Java의 초보자이며 JDK 1.7과 함께 IDE로 방금 설치 한 IntelliJ를 사용하여 코드를 실행하려고합니다. 다음 코드 조각은 컴파일조차하지 않고 계속 오류를 발생시킵니다.
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
습니까?