将int转换为float
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将int转换为float相关的知识,希望对你有一定的参考价值。
method to convert int to float in ObjC
// http://stackoverflow.com/questions/5728998/objective-c-casting-int-to-float // First objective c style int b = 10; There will be NSNumber instance and messages numberWithInt, floatValue will be send, right? // Second c style int b = 10; float a = (float) b;
以上是关于将int转换为float的主要内容,如果未能解决你的问题,请参考以下文章
是否有更直接的方法将float转换为int而不是添加0.5f并使用截断转换?