黑马程序员技术交流社区

标题: 调试 空指针异常! [打印本页]

作者: chocolate    时间: 2012-1-6 13:55
标题: 调试 空指针异常!
本帖最后由 chocolate 于 2012-1-6 17:15 编辑

public class Test {
public static void main(String[] args) {
String src = System.console().readLine();
int i = Integer.parseInt(src);//This method will give the failed reason.
String aim = "";
while (i > 1) {
aim = i % 2 + aim;
i /= 2;
}
aim = i+aim;
System.out.println(aim);
}
}


作者: 吴上储    时间: 2012-1-6 14:53
console().为null
作者: chocolate    时间: 2012-1-6 17:14
吴上储 发表于 2012-1-6 14:53
console().为null

:handshake   知道了···! 谢谢!




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