[单项选择题] 已知有下面的类说明:public class Test4private float f=1.0f;int m=12;static int n=1; public

[单项选择题] 已知有下面的类说明:public class Test4private float f=1.0f;int m=12;static int n=1; public,第1张

[单项选择题] 已知有下面的类说明: public class Test4 private float f=1.0f; int m=12; static int n=1; public

[单项选择题] 已知有下面的类说明:

public class Test4

private float f=1.0f;

int m=12;

static int n=1;

public static void main(String args[])

Test4 e=new Test4();

在main()方法中,下面哪个的使用是正确的 ( )

A.f

B.this.n

C.Test4.m

D.Test4.f

正确答案:

A

参考解析:

该题考查的是怎样引用对象变量。访问对象成员变量的格式为:对象名.成员变量名。在本题中使用Test4 e=new Test4();语句生成了对象并由变量e引用后,可以通过上述格式访问对象的成员f,即e.f。所以本题选A。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5626111.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存