int.Parse与int.TryParse的区别

Convert.ToInt32
int.Parse(Int32.Parse)
int.TryParse
(int)
四者都可以解释为将类型转换为 int,那它们的区别是什么呢?

 

Convert.ToInt32int.Parse 较为类似,实际上 Convert.ToInt32 内部调用了 int.Parse:

  • Convert.ToInt32 参数为 null 时,返回 0;
  • int.Parse 参数为 null 时,抛出异常。  
  • Convert.ToInt32 参数为 "" 时,抛出异常;
  • int.Parse 参数为 "" 时,抛出异常。 

 

  • Convert.ToInt32 可以转换的类型较多;
  • int.Parse 只能转换数字类型的字符串。

int.TryParse 与 int.Parse 又较为类似,但它不会产生异常,转换成功返回 true,转换失败返回 false。最后一个参数为输出值,如果转换失败,输出值为 0。
 

int m; 
if(int.TryParse("2"),out m)
{
...
}
返回true ,运行{}内,并给m赋值为2

 

if(int.TryParse("ddd"),out m)
{
...
}
返回false,不运行if{}内,并给m赋值为0

参考:http://blog.sina.com.cn/s/blog_67aaf4440100ocn5.html

你可能感兴趣的:(int.Parse与int.TryParse的区别)