- 浏览: 2916 次
- 性别:
- 来自: 四川
最近访客 更多访客>>
最新评论
-
crazyreal:
Very good, thank you!
JDK 6.0 Console -
joshuayan:
必须在控制台下运行才可以得到console实例
JDK 6.0 Console -
ouspec:
大学生活永远让人怀念
感受交院
文章列表
有如下代码:
public class KickStart {
/**
* @param args
*/
public static void main(String[] args) {
Console console = System.console();
System.out.println((console != null ? "[not null]" : "[null]"));
}
}
在JDK6.0下打印出的结果为[null],IDE是Eclipse。我感到很困惑,为什么System.co ...