// Studentクラスの定義
public class Student {
// studyメソッド
public void study() {
System.out.println("学生が勉強中です。");
}
}
// Userクラスの定義
public class User {
public static void main(String[] args) {
// Studentクラスのインスタンスを作成
Student student = new Student();
// studyメソッドを呼び出して学生の勉強中であることを表示
student.study();
}
}
この例では、Student
クラスに study
メソッドがあり、このメソッドを呼び出すことで学生が勉強中であることが表示されます。User
クラスで Student
クラスのインスタンスを作成し、そのインスタンスの study
メソッドを呼び出しています。このコードを実行すると、コンソールに “学生が勉強中です。” というメッセージが表示されます。