袁凤鸣的博客 | Fleeming's Blog Front-end Dev Engineer

总结一下 项目开发中( OC 和 C )常用的函数

2017-03-29
袁凤鸣
iOS

介绍一下Objective-c常用的函数,常数变量

(一):【算术函数】

函数名 说明 例子
int abs(int i) 处理int类型的取绝对值 int a = fabs( 71 - 78);
→7
※浮点数的时候用fabs。
float fabsf(float i) 处理float类型的取绝对值 CGFloat e = fabs( 71.001 - 78.89);
int rand() 随机数生成 srand(time(nil)); 
//随机数初期化
int val = rand()P; 
//0~49之间的随机数
double fabs(double a) 浮点数的绝对值 double val = fabs(-12.345);
→12.345
※整数的时候用abs。
double floor(double a) 返回浮点数整数部分(舍弃小数点) double val = floor(12.345);
→12.000
double ceil(double a) 返回浮点数整数部分(舍弃小数点部分,往个位数进1) double val = ceil(12.345);
→13.000
double pow(double a, double b) a的b次方 double val = pow(2, 3);
→8
double sqrt(double a) a的平方根 double val = sqrt(2);
→1.41421356

(二):【三角函数】

函数名 说明 例子
double cos(double a) 余弦函数 (a:弧度)  
double sin(double a) 正弦函数 (a:弧度)  
double tan(double a) 正切函数 (a:弧度)  
double asin(double a) 反正弦值 (a:弧度)  
double acos(double a) 反余弦函数(a:弧度)  
double atan(double a) 反正切函数  
double atan2(double a, double b) 返回给定的 a 及 b 坐标值的反正切值  

(三):【指数函数】

函数名 说明 例子
double log(double a) 以e 为底的对数值  
double log10(double a) 对数函数log  

(四):【常数】

函数名 说明 例子
M_PI 圆周率(=π)  
M_PI_2 圆周率的1/2(=π/2)  
M_PI_4 圆周率的1/4(=π/4)  
M_1_PI =1/π  
M_2_PI =2/π  
M_E =e  
M_LOG2E log_2(e)  
M_LOG10E log_10(e)  


如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!

¥ 打赏博主

Music

Search

Content