ここに私が尋ねようとしているものの例があります
スーパークラス Name.java
public class Name{
protected String first;
protected String last;
public Name(String firstName, String lastName){
this.first = firstName;
this.last = lastName;
}
public String initials(){
String theInitials =
first.substring(0, 1) + ". " +
last.substring(0, 1) + ".";
return theInitials;
}
サブクラスは ThreeNames.java です
public class ThreeNames extends Name{
private String middle;
public ThreeNames(String aFirst, String aMiddle, String aLast){
super(aFirst, aLast);
this.middle = aMiddle;
}
public String initials(){
String theInitials =
super.first.substring(0, 1) + ". " +
middle.substring(0, 1) + ". " +
super.last.substring(0, 1) + ".";
return theInitials;
}
したがって、Threename オブジェクトを作成してThreeNames example1 = new ThreeNames("Bobby", "Sue" "Smith")
呼び出すと、System.out.println(example1.initials());
取得B.S.S.
できます。
私の質問は、 Name クラスにあるイニシャルメソッドを呼び出して、私の出力がちょうどB.S.