(6-6)在类Person中定义了如下方法say(),Person类中的()方法能正确调用say()方法。classPerson{publicstaticvoidsay(){}}
A. publicvoidintro(){}
B. staticintshow(){//省略代码}
C. privatestaticvoidcry(){//省略代码}
D. publicStringgetInfo(){//省略代码}
查看答案
(6-6)在main(String[]args)方法内可以直接调用本类中的一个非静态方法
A. 对
B. 错
(6-6)Java类中定义的静态代码块每次新建对象时都会被执行。
A. 对
B. 错
(6-6)在一个类中,static方法能够访问非static方法。
A. 对
B. 错
(6-6)在一个类中,非static方法能够访问static方法。
A. 对
B. 错