本帖最后由 java冬冬 于 2013-5-11 13:06 编辑
- public class SystemDemo
- {
- public static void main(String[] args)
- {
- String str="itheima";
- try
- {
- System.out.println(Integer.parseInt(str));
- }
- catch (Exception e)
- {
- System.out.println(e);
- System.err.println(e);
- }
- }
- }
复制代码 执行结果:
虽然System.out与System.err两者写法不同,但是输出的结果却是一样的,
既然功能是一样的,为什么还要写成两种呢?求解?????{:soso_e152:}
|
|