1. 算术运算符
算术运算符 : 加(+), 减(-), 乘(*), 除(/), 模(%), 自增(++);
-- 其它运算 : 如果需要平方开放运算, 使用 math.h 中得方法即可;
源码示例 :
/************************************************************************* > File Name: 10-arithmetic.m > Author: octopus > Mail: octopus_truth.163.com > Created Time: 日 11/30 17:54:01 2014 算数运算符示例 : 加减乘除 ************************************************************************/ #import <Foundation/Foundation.h> int main(int argc, char * argv[]) { @autoreleasepool { // 加法示例 double a = 3.8; double b = 3.8; double sum = a + b; NSLog(@"加法 : %g", sum); //减法示例 double sub = a - b; NSLog(@"减法 : %g", sub); //乘法运算 double multi = a * b; NSLog(@"乘法 : %g", multi); //除法运算 double divde = a / b; NSLog(@"除法 : divide = %g", divde); NSLog(@"除法 : 3 / 0.0 = %g", 3/0.0); NSLog(@"除法 : -3/0.0 = %g", -3/0.0); //取余运算 int c = 5; int d = 2; int mod = c % d; NSLog(@"取余 : mod = %d", mod); //自增运算 int e = c++ + 6; NSLog(@"自增 : c = %d , e = %d", c, e); //次方计算, 调用 math.h 中得 pow() 方法进行次方计算; double f = pow(a, 2); NSLog(@"次方 : f = %g",f); //计算平方根 int g = sqrt(4); NSLog(@"平方根 : g = %d", g); //获取随机数 5以内的 int h = arc4random() % 5; NSLog(@"随机数 : h = %d", h); } }
执行结果 :
octopus-2:oc octopus$ clang -fobjc-arc -framework Foundation 10-arithmetic.m octopus-2:oc octopus$ ./a.out 2014-11-30 18:22:24.786 a.out[3198:507] 加法 : 7.6 2014-11-30 18:22:24.788 a.out[3198:507] 减法 : 0 2014-11-30 18:22:24.789 a.out[3198:507] 乘法 : 14.44 2014-11-30 18:22:24.790 a.out[3198:507] 除法 : divide = 1 2014-11-30 18:22:24.790 a.out[3198:507] 除法 : 3 / 0.0 = inf 2014-11-30 18:22:24.790 a.out[3198:507] 除法 : -3/0.0 = -inf 2014-11-30 18:22:24.791 a.out[3198:507] 取余 : mod = 1 2014-11-30 18:22:24.792 a.out[3198:507] 自增 : c = 6 , e = 11 2014-11-30 18:22:24.792 a.out[3198:507] 次方 : f = 14.44 2014-11-30 18:22:24.793 a.out[3198:507] 平方根 : g = 2 2014-11-30 18:22:24.793 a.out[3198:507] 随机数 : h = 4
2. 赋值运算符
赋值分析 :
-- OC 字符串赋值 : 将 指针 赋值给 OC 字符串指针, 详情见下面的示例;
-- C 语言字符串赋值 : 将 C 字符串指针, 赋值给 C 字符串指针;
-- 连续赋值 : 多个变量之间连续赋值 a = b = c = 38;
源码示例 :
/************************************************************************* > File Name: 10-assignment.m > Author: octopus > Mail: octopus_truth.163.com > Created Time: 日 11/30 21:32:18 2014 赋值运算符示例 = ************************************************************************/ #import <Foundation/Foundation.h> int main(int argc, char * argv[]) { @autoreleasepool { //将 str 字符串变量 赋值给 str2 字符串变量 NSString *str = @"octopus"; //OC 字符串赋值, 直接将指针赋值给 str2 指针 NSString *str2 = str; char * str3 = "han"; //C 字符串指针赋值 直接将指针赋值给 str4 char * str4 = str3; //打印 Object-C 字符串, 打印时 不带 * 指针符号, 打印 OC 类型使用 %@ 占位符 NSLog(@"str2 = %@", str2); NSLog(@"str4 = %s", str4); //连续赋值 int a, b, c; a = b = c = 38; NSLog(@"a = %d, b = %d, c = %d", a, b, c); } }
执行结果 :
octopus-2:oc octopus$ clang -fobjc-arc -framework Foundation 10-assignment.m octopus-2:oc octopus$ octopus-2:oc octopus$ ./a.out 2014-12-01 00:44:46.793 a.out[3695:507] str2 = octopus 2014-12-01 00:44:46.795 a.out[3695:507] str4 = han 2014-12-01 00:44:46.795 a.out[3695:507] a = 38, b = 38, c = 38
3. 位运算符
数据转二进制 :
-- 正数 : 如果数字是正数, 按照正常编码;
-- 负数 : 数字是负数, 除了符号位 1, 最高位不变, 剩下的按位取反 加 一;
-- 负数转成二进制数 : 补码形式 -1, 之后除了最高位之外按位取反;
按位 与 (&) : 有一位是 0, 就是 0;
按位 或 (|) : 有一位是 1, 就是 1;
按位 非 (~) : 所有的值 取 反;
按位 异或 (^) : 不同的取 1, 相同的取 0;
左移 (<<) : 左移, 最低位 补 0, 相当于 乘以 2 ^n;
右移 (>>) : 右移, 最高位 补 符号位, 相当于 除以 2 ^ n;
代码示例 :
/************************************************************************* > File Name: 10-bitOperation.m > Author: octopus > Mail: octopus_truth.163.com > Created Time: 一 12/ 1 00:52:53 2014 ************************************************************************/ #import <Foundation/Foundation.h> int main(int argc, char * argv[]) { @autoreleasepool { // 按位与 01 & 10 = 00 NSLog(@"1 & 2 = %d", 1 & 2); //按位或 01 & 10 = 11 NSLog(@"1 | 2 = %d", 1 | 2); /* 按位非 ~ -5 源码 10000000 00000000 00000000 00000101 反码 11111111 11111111 11111111 11111010 (源码按位取反, 最高位不变) 补码 11111111 11111111 11111111 11111011 (补码是反码加一) 按位取反结果 100 十进制 4 */ NSLog(@"~ -5 = %d", ~-5); //按位异或(相同 0, 不同 1) 011 ^ 110 = 101 NSLog(@"3 ^ 6 = %d", 3 ^ 6); /* 5 左移 2 位 101 << 2 结果 10100 16 + 4 = 20 */ NSLog(@"5 << 2 = %d", 5 << 2); /* -5 左移 2 位 -5 补码是 11111111 11111111 11111111 11111011 -5 左移后 11111111 11111111 11111111 11101100 补码 减一 11111111 11111111 11111111 11101011 取反 10000000 00000000 00000000 00010100 结果是 -20 */ NSLog(@"-5 << 2 = %d", -5 << 2); /* 右移, 最高位补符号位 -5 右移 2 位 -5 补码 11111111 11111111 11111111 11111011 右移2位 11111111 11111111 11111111 11111110 减一 11111111 11111111 11111111 11111101 取反 10000000 00000000 00000000 00000010 结果是 -2 */ NSLog(@"-5 >> 2 = %d", -5 >> 2); } }
执行结果 :