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