码迷,mamicode.com
首页 > 其他好文 > 详细

重写description方法

时间:2017-06-25 12:04:58      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ffffff   format   开发   ret   ring   存储   pop   cpu   程序   

//重写description方法
//description建议大家在实际开发中都要重写这种方法。然后将类中有意义的成员变量打印出来,这样很方便我们调试程序
-(NSString *)description
{
    //优化 return [NSString stringWithFormat:@"我的cpu=%.1f我的内部存储是=%.1fMB",_cpu,_ram];
    NSString *result = [NSString stringWithFormat:@"我的cpu=%.1f我的内部存储是=%.1fMB",_cpu,_ram];
    return result;
    return @"ffffffff";
}

重写description方法

标签:ffffff   format   开发   ret   ring   存储   pop   cpu   程序   

原文地址:http://www.cnblogs.com/tlnshuju/p/7076359.html

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