iOS中的round/ceil/floorf函数略解

Posted HeYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS中的round/ceil/floorf函数略解相关的知识,希望对你有一定的参考价值。

extern float ceilf(float);

extern double ceil(double);

extern long double ceill(long double);


extern float floorf(float);

extern double floor(double);

extern long double floorl(longdouble);


extern float roundf(float);

extern double round(double);

extern long double roundl(longdouble);

下面资料来自网络:

 

round:如果参数是小数,则求本身的四舍五入。
ceil:如果参数是小数,则求最小的整数但不小于本身.
floor:如果参数是小数,则求最大的整数但不大于本身.

Example:如何值是3.4的话,则

3.4 -- round 3.000000

    -- ceil 4.000000

    -- floor 3.00000


CGRectMake(floorf(self.view.bounds.size.width*0.5f -39.f*0.5f),self.view.bounds.size.height -57, 39, 39)

其中floorf(self.view.bounds.size.width*0.5f -39.f*0.5f)返回值为

140.000000这种形式

以上是关于iOS中的round/ceil/floorf函数略解的主要内容,如果未能解决你的问题,请参考以下文章

io流函数略解(java_input流)[二]

地图和定位功能的实现-篇幅略大,手机慎入

剑指offer算法编程题目部分汇总(解法略)

LeetCode(剑指 Offer)- 30. 包含min函数的栈

三角函数略解(待更新)

Grub2知识点整理(略)