public class Book {

 String title;
 String author;
 int ISBN;
 
 public Book(String title, String author, int ISBN)   //생성자
 {
 
 this.title = title;
 this.author = author;
 this.ISBN = ISBN; 
 }
  
 public static void main(String[] args) {

  Book javabook = new Book("JAVA","하이루",333);   //객체생성, 생성자 호출
 }
 

}



틀린게 없는데


the value of the local variable javabook is not used.  라고 하면서 컴파일이 안되네..