Class Methods
Lesson 30Author : 🦒
Last Updated : October, 2017
Code
class Book{
public String title;
public String author;
public void readBook(){
System.out.println("Reading " + this.title + " by " + this.author);
}
}