// 図書館システムの「本」クラス public class Book { // title: 本のタイトル // author: 本の著者 String title, author; // 本のタイトルを返すメソッド // 引数なし, 戻り値が本のタイトル public String getTitle() { return title; } }