第2章练习题1

来源:互联网 发布:python 短文本相似度 编辑:程序博客网 时间:2024/04/28 22:14
/**Exercise.java
 * 验证java类成员的默认初始化功能
 * @author Camille-He
 *
 */


class Hell {
int a;
char ch;
}


public class Exercise {
public static void main(String ar[]) {
Hell he = new Hell();
System.out.println("a:"+he.a);
System.out.println("ch:"+he.ch);
}
}


/*Output:
name:spot
says:Ruff!
true
true
*///~
0 0
原创粉丝点击