浮点数处理并去掉多余的0_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 浮点数处理并去掉多余的0

浮点数处理并去掉多余的0

 2014/12/2 19:11:11  粉粉色  程序员俱乐部  我要评论(0)
  • 摘要:代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.NSLog(@"--float-%@-",[selfstringDisposeWithFloat:9.000899990000]);}//浮点数处理并去掉多余的0-(NSString*)stringDisposeWithFloat:(float)floatValue
  • 标签:

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    NSLog(@"--float-%@-",[self stringDisposeWithFloat:9.000899990000]);
    
}
//浮点数处理并去掉多余的0
-(NSString *)stringDisposeWithFloat:(float)floatValue
{
    NSString *str = [NSString stringWithFormat:@"%f",floatValue];
    int len = str.length;
    for (int i = 0; i < len; i++)
    {
        if (![str  hasSuffix:@"0"])
            break;
        else
            str = [str substringToIndex:[str length]-1];
    }
    if ([str hasSuffix:@"."])//避免像2.0000这样的被解析成2.
    {
        return [str substringToIndex:[str length]-1];//s.substring(0, len - i - 1);
    }
    else
    {
        return str;
    }
}

输出:

2014-12-02 17:01:08.253 浮点数处理并去掉多余的0[21460:60b] --float-9.0009-

  • 相关文章
发表评论
用户名: 匿名