1つのJavaアプリケーションは通常、複数のクラスで構成されます。以下のサンプルコードは1つのクラス、Personクラスの例です。
はじめは複雑そうに見えるかもしれませんが、心配しないでださい。すぐに理解できるようになります。
package com.example;
import java.time.LocalDate;
/***
* 人
* @author murayama
*/
public class Person {
private LocalDate birthday;
private String fullName = "";
/**
* コンストラクタ
* @param fullName
* @param birthday
*/
public Person(String fullName, LocalDate birthday) {
super();
this.fullName = fullName;
this.birthday = birthday;
}
public LocalDate getBirthday() {
return birthday;
}
public void setBirthday(LocalDate birthday) {
this.birthday = birthday;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
}