51Testing软件测试论坛

标题: 为什么这里会报此处不允许使用空类型?,调用父类的成员变量就没问题 [打印本页]

作者: 测试积点老人    时间: 2019-2-20 09:42
标题: 为什么这里会报此处不允许使用空类型?,调用父类的成员变量就没问题
  1. class H1{
  2.     int x=10;
  3.     void show(){
  4.         System.out.println("A.X="+x);
  5.     }
  6. }
  7. class  H12 extends H1{
  8.     int y=30;
  9.     void show(){
  10.         System.out.println("B.x="+this.y+"SUPER="+super.show());
  11.     }
  12. }
  13. public class Test12{
  14.     public static void main(String args[]){
  15.     H12 h2 =new H12();
  16.     h2.show();
  17.     }
  18. }
复制代码
请大家帮忙看看

作者: qqq911    时间: 2019-2-21 10:39
变量定义的问题
作者: jingzizx    时间: 2019-2-21 13:11
分析下作用范围
作者: abcsell    时间: 2019-2-21 14:53
局部变量的作用范围不一样




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2