一些程序员使用这样的 float
CGFloat itemsHeight = [m_subscriptions count] * 97.f;
还有一些像这样使用 float
CGFloat itemsHeight = [m_subscriptions count] * 97.0f;
去掉零有什么副作用吗?
Best Answer-推荐答案 strong>
不,尾随零没有区别:浮点常量的值将保持不变。你确实需要一个点,否则编译器会报告语法错误。换句话说,[m_subscriptions count] * 97f 不会编译。
关于ios - 正确使用 CGFloat,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27047694/
|