//Schlechtes Beispiel
public class Person {
public String name;
public int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String show(){
return String.format("%s(%d Jahre alt)\n", this.name, this.age);
}
}
public class Person {
//Feld ist privat
private String name;
private int age;
//Getter im Namensfeld
public String getName() {
return this.name;
}
//Namensfeldsetzer
public void setName(String name) {
this.name = name;
}
//Altersfeld Getter
public int getAge() {
return this.age;
}
//Altersfeldsetzer
public void setAge(int age) {
if (age <= 0) {
throw new IllegalArgumentException("Bitte geben Sie das Alter als positive Zahl an.");
}
this.age = age;
}
public String show() {
return String.format("%s(%d).", getName(), getAge());
}
}
public class AccessorBasic {
public static void main(String[] args) {
var p = new Person();
p.setName("Ichiro");
p.setAge(47);
System.out.println(p.show()); //Ich bin Ichiro (47 Jahre alt).
p.setAge(-30); //Error
}
}
//Deklarieren Sie die Klasse selbst als endgültig und erweitern Sie sie nicht
public final class Person {
//Alle privaten Finale (Neuzuweisung verboten)
private final String name;
private final int age;
//Initialisieren Sie das private Endfeld im Konstruktor
public Person(String name, int age) {
this.name = name;
this.age = age;
}
//Getter
public String getName() {
return this.name;
}
public int getAge() {
return this.age;
}
}
public class ImmutableBasic {
public static void main(String[] args) {
var p = new Person("Satoshi", 10);
System.out.println(p.getName()); //Satoshi
}
}
import java.util.Date;
public final class Person {
private final String name;
private final int age;
private final Date birth;
public Person(String name, int age, Date birth) {
this.name = name;
this.age = age;
this.birth = birth;
}
public String getName() {
return this.name;
}
public int getAge() {
return this.age;
}
public Date getBirth() {
return this.birth;
}
}
//Beispiel für die Änderung des später an die Instanz übergebenen Werts
import java.util.Date;
public class Main {
public static void main(String[] args) {
var birth = new Date();
var p = new Person("Satoshi", 10, birth);
System.out.println(p.getBirth()); //Tue Nov 03 11:26:33 UTC 2020
//Aktualisieren Sie das während der Instanziierung übergebene Objekt
birth.setDate(15);
System.out.println(p.getBirth()); //Sun Nov 15 11:26:33 UTC 2020
//Beispiel für die Änderung des von der Instanz erhaltenen Werts
// var p = new Person("Satoshi", 10, new Date());
// System.out.println(p.getBirth()); //Tue Nov 03 11:29:05 UTC 2020
// var birth = p.getBirth();
//
// birth.setDate(15);
// System.out.println(p.getBirth()); //Sun Nov 15 11:29:05 UTC 2020
}
}
//Konstruktor Argument Geburt,Rufen Sie mit der Methode getTme den Zeitstempelwert aus dem Geburtsfeld ab und erstellen Sie ein neues Objekt
import java.util.Date;
public final class Person {
private final String name;
private final int age;
private final Date birth;
public Person(String name, int age, Date birth) {
this.name = name;
this.age = age;
//Defensive Kopie
this.birth = new Date(birth.getTime());
}
public String getName() {
return this.name;
}
public int getAge() {
return this.age;
}
public Date getBirth() {
//Defensive Kopie
return new Date(this.birth.getTime());
}
}
Recommended Posts