C#中(int)、int.Parse()、int.TryParse、Convert 区别

(int) 属 cast 转换,只能将其它数字类型转换成 int 类型,它不能转换字符串,比如下例就会失败:

string s = "123";
int n = (int)s; 


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;


你可能感兴趣的:(C#中(int)、int.Parse()、int.TryParse、Convert 区别)