Java #4-3 생성자

/* 책제목, 저자, ISBN 생성자로 받고 출력하는 프로그램*/
public class Book
{
String title;
String author;
String ISBN;

public Book(String title, String author, String ISBN)
{
this.title = title;
this.author = author;
this.ISBN = ISBN;
}

void print()
{
System.out.print(title+", ");
System.out.print(author+", ");
System.out.print(ISBN);
}

public static void main(String[] args)
{
Book javaBook = new Book("명품 JAVA Programing", "황기태", "978-89-7050-764-4");

javaBook.print();
}
}


result)

댓글 없음: