【转载】C#中int.TryParse方法和int.Parse方法的异同之处

在C#编程过程中,int.TryParse方法和int.Parse方法都可以将字符串string转换为整型int类型,但两者还是有区别,最重要的区别在于int.TryParse方法在字符串无法转换为int类型的情况下不会引发程序异常,而int.Parse方法则是直接抛出程序异常。int.TryParse方法在无法转换的情况下返回false,并且使用了out参数进行转换。

int.TryParse方法的签名为:static bool TryParse(string s, out Int32 result)

int.Parse方法的签名为:static Int32 Parse(string s)

使用int.TryParse方法进行类型转换的时候,int变量无需先行赋值,在调用int.TryParse方法后,将自动带出结果值。

备注:原文转载自博主个人站IT技术小趣屋,原文链接为C#中int.TryParse方法和int.Parse方法的异同之处_IT技术小趣屋

【转载】C#中int.TryParse方法和int.Parse方法的异同之处

上一篇:转 Windws Server 2012 Server Backup(备份与还原)


下一篇:ElasticSearch : High Rest Api 使用