标签:style blog ar color sp on div log bs
class Father { Father(int a) { System.out.println("father run"); } } class Son extends Father { Son() {
Super(2); System.out.println("son run"); } Son(int a) {
Super(4); System.out.println("son run a"); } } //ExtendsDemoFour class singleMode { public static void main(String[] args) { Son s = new Son(); Son s1 = new Son(); } }
标签:style blog ar color sp on div log bs
原文地址:http://www.cnblogs.com/tozr/p/4128267.html