在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Item 3: Prefer the is or as Operators to Casts 第3项: 优先使用is/as进行类型转换
Object o = new Object();
Boolean b1 = (o is Object); //b1为true Boolean b2 = (o is Person); //b2为false
object o = Factory.GetObject( );
MyType t = o as MyType; if ( t != null ) { // work with t, it's a MyType. } else { // report the failure. }
|
请发表评论