(String[] args)
| 27 | return "Orc " + orcNumber + ": " + super.toString(); |
| 28 | } |
| 29 | public static void main(String[] args) { |
| 30 | Orc orc = new Orc("Limburger", 12); |
| 31 | System.out.println(orc); |
| 32 | orc.change("Bob", 19); |
| 33 | System.out.println(orc); |
| 34 | } |
| 35 | } |
| 36 | /* Output: |
| 37 | Orc 12: I'm a Villain and my name is Limburger |