黑马程序员技术交流社区

标题: 怎么选 [打印本页]

作者: hui2126ning    时间: 2015-9-23 23:30
标题: 怎么选
在java中,以下程序的输出结果是( )
class Point  {     
int x;
        boolean y;     
void output()     {
               System.out.println(x);        
System.out.println(y);      
}
            public static void main(String[] args)     {
                Point pt =new Point();        
        pt.output();   
}  
}
A.        运行错误
B.        0 ture  
C.  0 false
D.        0 0

作者: 三川草民    时间: 2015-9-23 23:37
答案是C  
作者: xinchi    时间: 2015-9-23 23:51
c,,,,,,,,,,,,,是吧
作者: 清心玉质    时间: 2015-9-24 00:12
我想选c
作者: 佳期或可梦    时间: 2015-9-24 12:31
我选C。。。
作者: heshiwei    时间: 2015-9-24 12:55
C,运行一下就能看到结果。
下面,我做一个简单的分析。
好吧,其实也没什么可以分析的,只要记住,对象中的属性字段值,每种类型都有默认值。
如:
int short long byte 的默认值0
布尔值的默认值是false
char的默认值是0,(没错,是0,不是'0')
所以引用类型默认值都是null

作者: 插兜    时间: 2015-9-24 13:10
应该是c吧
作者: djsbiu    时间: 2015-9-24 15:07
我选c                                                   
作者: cuijinghao    时间: 2015-9-24 16:38
成员变量的默认值问题,int型是0,布尔型是false
作者: wangzhuo    时间: 2015-9-24 16:44
肯定是c啊
作者: 915816106    时间: 2015-9-24 18:29
答案就是c




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2