本帖最后由 黑马不黑 于 2013-12-4 21:04 编辑
- public class TestQuestion {
- public static void main(String[] args){
- System.out.println("Hello world !”);
- RuntimeException re = null;
- throw re;
- }
- }
复制代码
在学到毕老师讲的hello word例子时候,我自己写了一段上面的代码,运行了可以打印出hello word,
但是系统报空对象异常,请问程序是哪里出错了吗? |
|