| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 563 人关注过本帖
标题:[求助]谁能帮我看一下,为什么不能得到我想要的自定义异常呢
只看楼主 加入收藏
david1016
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2005-9-27
收藏
 问题点数:0 回复次数:1 
[求助]谁能帮我看一下,为什么不能得到我想要的自定义异常呢

谁能告诉我下面的程序为什么不能得到我想要的结果呀? 我希望:输入的字符,如果不能转化为数字,则将引发我自定义的异常,看看我写的这个程序有什么问题,指点指点小弟我呀 class NumberFormatExceptionDemo extends NumberFormatException { NumberFormatExceptionDemo() { super("输入无效字符"); } }

class Input { int num;

Input(int num) { this.num = num; System.out.println("num:" + num); }

public static void main(String args[]) { try { new Input(Integer.parseInt(args[0])); }

catch (NumberFormatExceptionDemo e) { System.out.println(e); } } };

搜索更多相关主题的帖子: 定义 
2005-09-28 17:36
kai
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:52
帖 子:3450
专家分:59
注 册:2004-4-25
收藏
得分:0 
class NumberFormatExceptionDemo
{
  String input;
  public NumberFormatExceptionDemo(String s)
  {
    input = s;
  }
  public String toString()
  {
    return "输入无效字符 " + input;
  }
}

class Input
{
  int num;

  Input(int num)
  {
    this.num = num;
    System.out.println("num:" + num);
  }

  public static void main(String args[])
  {
    try
    {
      if(args.length != 0)
        new Input(Integer.parseInt(args[0]));
    }
    catch (NumberFormatException e)
    {
      NumberFormatExceptionDemo nfed = new NumberFormatExceptionDemo(args[0]);
      System.err.println(nfed.toString());
    }
  }
}

自由,民主,平等,博爱,进步.
中华民国,我的祖国,中华民国万岁!中华民国加油!
本人自愿加入中国国民党,为人的自由性,独立性和平等性而奋斗!
2005-09-29 08:38
快速回复:[求助]谁能帮我看一下,为什么不能得到我想要的自定义异常呢
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012363 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved