并非每个对象都可以直接转换为int.例如,以下内容将无法编译: string Maomao = "100"; int i = (int)Maomao; 因为string无法隐式转换为int. 如果必须要做就这样写: string Maomao = "100"; int i = Convert.ToInt32(Maomao);…
在C#编程过程中,可以使用Convert.ToInt32方法将字符串或者其他可转换为数字的对象变量转换为ToInt32类型,Convert.ToInt32方法有多个重载方法,最常使用的一个方法将字符串转换为Int32类型,方法签名为:static int ToInt32(string value).当Convert.ToInt32无法转换时,将会引发程序异常,如果无法确定是否一定可转换,建议使用int.TryParse等方法. 例如有个字符串str的值为"33",将之转换为Int32类…