本文介绍了有没有办法避免这种混乱?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法避免下面的混乱?
int i = 0;
if(someString!= null){
try {
i = Int32.Parse(someString);
} catch(FormatException){
}
}
更具体地说,有没有办法避免丑陋的空捕获
声明?
Is there a way to avoid the following mess?
int i = 0;
if (someString != null) {
try {
i = Int32.Parse(someString);
} catch (FormatException) {
}
}
More specifically, is there a way of avoiding the ugly empty catch
statement?
推荐答案
这不是一个讨厌的黑客。虽然?当然有更好的方法吗?!
Isn''t that a nasty "hack" though? Surely there''s a better way?!
这不是一个讨厌的 ;劈"虽然?当然有更好的方法吗?!
Isn''t that a nasty "hack" though? Surely there''s a better way?!
这篇关于有没有办法避免这种混乱?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!