A. void method(){} B. int method(){return 0;} C. void method(int i) D. private void method()
A. Super B. This C. Extends D. Abstract
A. 在子类构造方法中使用super()显示调用父类的构造方法,super()必须写在子类构造方法的第一行,否则编译不通过 B. super()和this()不一定要放在构造方法内第一行 C. this和super可以同时出现在一个构造函数里面 D. this ()和super()可以在static环境中使用,包括static方法、static语句块
A. 对 B. 错