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

2021-06-09 05:05

阅读:628

标签:构造   param   数据   com   string   href   htm   logs   类型转换   

  1. int适合简单数据类型之间的转换,C#的默认整型是int32(不支持bool型);
  2. int.Parse(string sParameter)是个构造函数,参数类型只支持string类型;
  3. Convert.ToInt32()适合将Object类型转换为int型;
  4. Convert.ToInt32()和int.Parse()的细微差别:
    对于空值(null)的处理不 同,Convert.ToInt32(null)会返回0而不会产生任何异常,但int.Parse(null)则 会产生异常。
    https://www.cnblogs.com/Unrmk-LingXing/p/4168993.html

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

标签:构造   param   数据   com   string   href   htm   logs   类型转换   

原文地址:https://www.cnblogs.com/wsq-blog/p/10661406.html


评论


亲,登录后才可以留言!