public static Byte formatByte(String value)
{
if(value == null)
return null;
return new Byte(value);
NumberFormatException e;
e;
return null;
}
这段代码中
NumberFormatException e;
e;
return null;
这种写法是头一次看到,没看懂,请讲解一下
------解决方法--------------------------------------------------------
代码有问题
后三句执行不到
------解决方法--------------------------------------------------------
确实不明白,既然抛出异常就应该用catch捕获都对呀