※有料会員になるとこの動画をご利用いただけます
詳しい説明を読む
#05:RPGのPlayerクラスを継承で記述1
ここでは、クラスを継承する具体例として、RPGのPlayerクラスを継承で記述します。
まずは、親クラスを作成しましょう。
// RPGのPlayerクラスを継承で記述 その1
public class Main {
public static void main(String[] args) {
System.out.println("=== パーティでスライムと戦う ===");
Player hero = new Player("勇者");
Player warrior = new Player("戦士");
Player[] party = {hero, warrior};
for (Player member : party) {
member.attack("スライム");
}
// hero.attack("スライム");
}
}
class Player {
public String myName;
public Player(String name) {
myName = name;
}
public void attack(String enemy) {
System.out.println(myName + "は、" + enemy + "を攻撃した!");
}
}
ログインすると採点できます
コードの実行