//: object/E01_DefaultInitialization.java

public class E01_DefaultInitialization{
int i ;
char c ;
public E01_DefaultInitialization(){
System.out.println("i = " + i );
System.out.println("c = [" + c + "]");
}
public static void main (String[] args){
new E01_DefaultInitialization();
}
}

这段代码输出不正确,

正常的应当是

i = 0
c = [ ]

实际输出的是

i = 0
c = [a ]

无解啊!

编辑环境是 JDK1.6     Notepad++

难道是那个类库错误?

最新文章

  1. C#关于分页显示
  2. “老坛泡新菜”:SOD MVVM框架,让WinForms焕发新春
  3. Netty(二)入门
  4. C/C++实践笔记 006
  5. SQL2012连接字符串
  6. PHP 常用字符串函数整理
  7. 【MyEclipse 2015】 逆向破解实录系列【2】(纯研究)
  8. oracle的会话(session)
  9. class tuple
  10. 移动端翻页插件dropload.js(支持Zepto和jQuery)
  11. MySql安装时在Start Service处失败
  12. VB.NET版机房收费系统—DataGridView应用
  13. python- 如何return返回多个值
  14. python——登陆接口设计(循环方法)
  15. android最新的工具DateHelper
  16. MySQL定义和变量赋值
  17. 老李分享: Oracle Performance Tuning Overview 翻译
  18. 数据分析 大数据之路 五 pandas 报表
  19. Pycharm的激活码,亲测可用(20181223)
  20. mongodb及mongoclient在win7下的编译和使用

热门文章

  1. memcached客户端的使用
  2. Valid Number @python
  3. U盘安装Linux CentOS 6.5 64位操作系统(来自互联网)
  4. C++学习36 string类和字符串
  5. c++cin.ignore()
  6. ZOJ 3407 Doraemon's Cake Machine [数学]
  7. [HDU 4417] Super Mario (树状数组)
  8. BC-Clarke and five-pointed star(水)
  9. 黑马程序员_JAVA基础知识总结2
  10. (转)读取XML数据到treeView中