A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 赵科铭 中级黑马   /  2014-3-8 12:40  /  1337 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

int.TtyParse(string s, out int i)
用来判断s字符串是否是由数字组成的,若是有数字组成,则将这个数字的值赋给i,同时这个式子返回bool类型的True。
若不是数字组成,则将i赋值为0,并且返回值为False。

  1. string s01 = "alex";
  2.             string s02 = "1234";
  3.             int i01;
  4.             int i02;
  5.             bool b01 = int.TryParse(s01, out i01);
  6.             Console.WriteLine(s01 + " " + b01 + " " + i01);
  7.             bool b02 = int.TryParse(s02, out i02);
  8.             Console.WriteLine(s02 + " " + b02 + " " + i02);
复制代码


输出结果为:
alex False 0
1234 Ture 1234

1 个回复

倒序浏览
值得学习ing!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马