当前位置:百科知识 > 知到废品回收答案

问题描述:

[单选] 关于以下程序代码的说明正确的是()1.class HasStatic{2. private static int x=100;3. public static void main(String args【】){4. HasStatic hs1=new HasStatic();5. hs1.x++;//101 6. HasStatic hs2=new HasStatic();7. hs2.x++;//102 8. hs1=new HasStatic();9. hs1.x++;//103 10. HasStatic.x- -;//102 11. System.out.println(“x=”+x); 12. }13. }
A.5行不能通过编译,因为引用了私有静态变量 B.10行不能通过编译,因为x是私有静态变量 C.程序通过编译,输出结果为:x=103 D.程序通过编译,输出结果为:x=102
参考答案:查看
答案解析:
☆收藏

随机题目