对于转化string s
try
{
int year = int.Parse(s);
}
异常 条件
ArgumentNullException s 为 null 引用(在 Visual Basic 中为 Nothing)
FormatException s 的格式不正确
OverflowException s 表示小于 MinValue 或大于 MaxValue 的数字
那么如何处理异常呢?只需在下面加入下面的函数:
catch (Exception)
{
system.out.println("wrong input!");
return 0;
}
这样就解决了。
时间: 2024-10-28 00:38:57