ฉันเป็นผู้เริ่มต้นใน Java และพยายามเรียกใช้รหัสของฉันโดยใช้ IntelliJ ที่ฉันเพิ่งติดตั้งเป็น IDE ของฉันด้วย JDK 1.7 ส่วนของรหัสต่อไปนี้ไม่ได้รวบรวมและทำให้ฉันมีข้อผิดพลาด:
Error: Could not find or load main class libTest
รหัส
import java.lang.Integer;
import java.lang.String;
import java.lang.System;
import java.util.*;
class book {
private String name = "trial";
private int bookCode=1;
private int issued=0;
public void Issue(){
if(issued==0) {
issued=1;
System.out.println("You have succesfully issued the book");
}
else {
System.out.println("The book is already issued. Please contact the librarian for further details");
}
}
public int checkCode() {
return bookCode;
}
String readName() {
return name;
}
public void setName(String newName){
name=newName;
}
public void setBookCode(int newCode){
bookCode=newCode;
}
}
class library {
private ArrayList books=new ArrayList();
public void getList(){
for(int bk:books){
String bName=books(bk).readName();
System.out.println((bk+1)+") "+bName);
}
}
}
public class libTest{
public static void main(String[] args){
library newLib= new library();
System.out.println("code working");
}
}
มีการเปลี่ยนแปลงใด ๆ ที่ฉันต้องทำในการตั้งค่าคอมไพเลอร์หรือไม่? หรือมันคือรหัส
import java.lang...
สิ่งนี้เกิดขึ้นโดยอัตโนมัติสำหรับคลาสในlang
แพ็คเกจ
libTest.java
อะไร