鍍金池/ 教程/ C/ Objective-C 賦值運(yùn)算符
Objective-C 多態(tài)性
Objective-C 預(yù)處理器
Objective-C for循環(huán)
Objective-C 開(kāi)發(fā)環(huán)境(安裝配置)
Obj-C Foundation/基礎(chǔ)框架
Objective-C 指針運(yùn)算
Objective-C 循環(huán)
Objective-C 錯(cuò)誤處理
Objective-C while循環(huán)
Objective-C if語(yǔ)句
Objective-C do...while循環(huán)
Objective-C教程
Objective-C 嵌套switch語(yǔ)句
Objective-C 函數(shù)按值調(diào)用
Objective-C 常量
Objective-C 運(yùn)算符
Objective-C 數(shù)據(jù)類型
Objective-C 邏輯運(yùn)算符
Objective-C 數(shù)組作為函數(shù)參數(shù)傳遞
Objective-C struct/結(jié)構(gòu)
Objective-C 嵌套循環(huán)
Objective-C 函數(shù)引用調(diào)用
Objective-C 日志處理
Objective-C 數(shù)據(jù)存儲(chǔ)
Objective-C 教程首頁(yè)
Objective-C 擴(kuò)展
Objective-C 異常處理
Objective-C 類型轉(zhuǎn)換
Objective-C 嵌套 if 語(yǔ)句
Objective-C typedef
Objective-C 決策
Objective-C 指針的數(shù)組
Objective-C Protocols/協(xié)議
Objective-C 日期和時(shí)間
Objective-C 指針
Objective-C 內(nèi)存管理
命令行參數(shù)
Objective-C NSString/字符串
Objective-C 動(dòng)態(tài)綁定
Objective-C 復(fù)合對(duì)象
Objective-C Arrays/數(shù)組
Objective-C 位運(yùn)算符
Objective-C 指向指針的指針
Objective-C 從函數(shù)返回?cái)?shù)組
Objective-C Posing/冒充
Objective-C Categories/類別
Objective-C 文件處理
Objective-C 賦值運(yùn)算符
Objective-C 函數(shù)返回指針
Objective-C if...else 語(yǔ)句
Objective-C switch語(yǔ)句
Objective-C URL加載系統(tǒng)
Objective-C 算術(shù)運(yùn)算符
Objective-C Numbers/數(shù)字
Objective-C語(yǔ)言程序結(jié)構(gòu)
Objective-C 快速枚舉
Objective-C 基本語(yǔ)法
Objective-C 類&對(duì)象
Objective-C 變量
Objective-C 關(guān)系運(yùn)算符
Objective-C 塊
Objective-C break語(yǔ)句
Objective-C continue語(yǔ)句
Objective-C 語(yǔ)言概述
Objective C 文本和字符串
Objective-C 函數(shù)
Objective-C 傳遞函數(shù)的指針
Objective-C 數(shù)組的指針
Objective-C 多維數(shù)組
Objective-C 繼承
Objective-C 數(shù)據(jù)封裝

Objective-C 賦值運(yùn)算符

支持Objective-C語(yǔ)言的賦值運(yùn)算符有以下:

運(yùn)算符 描述說(shuō)明 示例
= Simple assignment operator, Assigns values from right side operands to left side operand C = A + B will assign value of A + B into C
+= Add AND assignment operator, It adds right operand to the left operand and assigns the result to left operand C += A 等同于 C = C + A
-= Subtract AND assignment operator, It subtracts right operand from the left operand and assigns the result to left operand C -= A 等同于 C = C - A
*= Multiply AND assignment operator, It multiplies right operand with the left operand and assigns the result to left operand C *= A 等同于 C = C * A
/= Divide AND assignment operator, It divides left operand with the right operand and assigns the result to left operand C /= A 等同于 C = C / A
%= Modulus AND assignment operator, It takes modulus using two operands and assigns the result to left operand C %= 等同于 C = C % A
<<= Left shift AND assignment operator C <<= 2 等同于 C = C << 2
>>= Right shift AND assignment operator C >>= 2 等同于 C = C >> 2
&= Bitwise AND assignment operator C &= 2 等同于C = C & 2
^= bitwise exclusive OR and assignment operator C ^= 2 等同于C = C ^ 2
|= bitwise inclusive OR and assignment operator C |= 2 等同于 C = C | 2

例子

嘗試下面的例子就明白了所有在Objective-C編程語(yǔ)言的賦值運(yùn)算符:

#import <Foundation/Foundation.h>

main()
{
   int a = 21;
   int c ;

   c =  a;
   NSLog(@"Line 1 - =  Operator Example, Value of c = %d
", c );

   c +=  a;
   NSLog(@"Line 2 - += Operator Example, Value of c = %d
", c );

   c -=  a;
   NSLog(@"Line 3 - -= Operator Example, Value of c = %d
", c );

   c *=  a;
   NSLog(@"Line 4 - *= Operator Example, Value of c = %d
", c );

   c /=  a;
   NSLog(@"Line 5 - /= Operator Example, Value of c = %d
", c );

   c  = 200;
   c %=  a;
   NSLog(@"Line 6 - %= Operator Example, Value of c = %d
", c );

   c <<=  2;
   NSLog(@"Line 7 - <<= Operator Example, Value of c = %d
", c );

   c >>=  2;
   NSLog(@"Line 8 - >>= Operator Example, Value of c = %d
", c );

   c &=  2;
   NSLog(@"Line 9 - &= Operator Example, Value of c = %d
", c );

   c ^=  2;
   NSLog(@"Line 10 - ^= Operator Example, Value of c = %d
", c );

   c |=  2;
   NSLog(@"Line 11 - |= Operator Example, Value of c = %d
", c );

}

當(dāng)編譯和執(zhí)行上述程序,它會(huì)產(chǎn)生以下結(jié)果:

2013-09-07 22:00:19.263 demo[21858] Line 1 - =  Operator Example, Value of c = 21
2013-09-07 22:00:19.263 demo[21858] Line 2 - += Operator Example, Value of c = 42
2013-09-07 22:00:19.263 demo[21858] Line 3 - -= Operator Example, Value of c = 21
2013-09-07 22:00:19.263 demo[21858] Line 4 - *= Operator Example, Value of c = 441
2013-09-07 22:00:19.263 demo[21858] Line 5 - /= Operator Example, Value of c = 21
2013-09-07 22:00:19.264 demo[21858] Line 6 - %= Operator Example, Value of c = 11
2013-09-07 22:00:19.264 demo[21858] Line 7 - <<= Operator Example, Value of c = 44
2013-09-07 22:00:19.264 demo[21858] Line 8 - >>= Operator Example, Value of c = 11
2013-09-07 22:00:19.264 demo[21858] Line 9 - &= Operator Example, Value of c = 2
2013-09-07 22:00:19.264 demo[21858] Line 10 - ^= Operator Example, Value of c = 0
2013-09-07 22:00:19.264 demo[21858] Line 11 - |= Operator Example, Value of c = 2