using
语句是否安全?
考虑以下示例:
class Test {
IDisposable GetObject(string name) {
// returns null if not found
}
void DoSomething() {
using (IDisposable x = GetObject("invalid name")) {
if (x != null) {
// etc...
}
}
}
}
是否可以保证只有当对象不为null时,才会调用Dispose
,并且我不会得到NullReferenceException
?