码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-04-06 14:12:11      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:构造   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!