OnJava8-Examples/reuse/Chess.java

33 lines
575 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// reuse/Chess.java
2015-06-15 17:47:35 -07:00
// <20>2015 MindView LLC: see Copyright.txt
// Inheritance, constructors and arguments.
import static com.mindviewinc.util.Print.*;
class Game {
Game(int i) {
print("Game constructor");
}
}
class BoardGame extends Game {
BoardGame(int i) {
super(i);
print("BoardGame constructor");
}
}
public class Chess extends BoardGame {
Chess() {
super(11);
print("Chess constructor");
}
public static void main(String[] args) {
Chess x = new Chess();
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
Game constructor
BoardGame constructor
Chess constructor
2015-09-07 11:44:36 -06:00
*/