1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import java.util.*; public class Main { public static void main(String[] args) throws Exception { オリンピック級 オリンピック号 = new オリンピック級("オリンピック号"); オリンピック級 タイタニック号 = new オリンピック級("タイタニック号"); オリンピック級 ブリタニック号 = new オリンピック級("ブリタニック号"); List<IShip> ships = new ArrayList<>(); ships.add(オリンピック号); ships.add(タイタニック号); ships.add(ブリタニック号); for(IShip ship : ships) { ship.ヨーソロー(); } } } interface IShip { public abstract void ヨーソロー(); } class オリンピック級 implements IShip { public String name; public オリンピック級(String name) { this.name = name; } @Override public void ヨーソロー() { System.out.println(name + "、ヨーソロー!"); } } |
1 2 3 |
オリンピック号、ヨーソロー! タイタニック号、ヨーソロー! ブリタニック号、ヨーソロー! |