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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© shenlongzs 中级黑马   /  2014-4-7 21:51  /  1132 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1、字符串转化为int、float型
字符串 str
int j = [str intValue];
float j = [str floatValue];
注意:如果字符串由数字开头,转化为起始的数字,否则转化为0,一定确保开头是数字。
2、转化BOOL型
BOOL型,查文档得知,如果转化为BOOL型,Returns YES on encountering one of "Y", "y", "T", "t", or a digit 1-9—the method ignores any trailing characters. Returns NO if the receiver doesn’t begin with a valid decimal text representation of a number.(由Y,y,T,t,1-9开始的字符串转化为YES,其余的为NO)


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马