[填空题] 下面是一个类的定义,试将程序补充完整。 class A{ String s; ____int a=66; A(String sl){ s=sl; } static int g

36 查阅

[填空题] 下面是一个类的定义,试将程序补充完整。 class A{ String s; ____int a=66; A(String sl){ s=sl; } static int geta(){ return a; } }

参考答案:

static

本题考查Java中的修饰符。static方法只能处理static成员,非static方法不能处理static成员。所以题目中的geta()方法声明是static的,所以其中的变量必须也声明为 static属性。

计算机考试