真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎樣通過(guò)Objective-C的枚舉學(xué)習(xí)iOS中位操作.md

這篇文章給大家分享的是有關(guān)怎樣通過(guò)Objective-C的枚舉學(xué)習(xí)iOS中位操作.md的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

目前創(chuàng)新互聯(lián)已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)頁(yè)空間、網(wǎng)站運(yùn)營(yíng)、企業(yè)網(wǎng)站設(shè)計(jì)、安慶網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

位操作

位操作是對(duì)二進(jìn)制數(shù)逐位進(jìn)行運(yùn)算或移位。它共包含兩種操作:位運(yùn)算和移位。下面就詳細(xì)的了解一下這兩種操作。

在此只討論iOS中的所有位操作的運(yùn)算符,別的語(yǔ)言的相同含義的操作符號(hào)可能不同

位運(yùn)算符(以下操作符皆同Objective-C)

位運(yùn)算符一種包含下面幾種:

~(取反,一元操作符):它會(huì)對(duì)目標(biāo)數(shù)字的二進(jìn)制每位進(jìn)行取反

let initialBits: UInt8 = 0b00001111let invertedBits = ~initialBits // equals 11110000

|(按位或):它會(huì)對(duì)兩個(gè)目標(biāo)數(shù)字的相同位置數(shù)字進(jìn)行或運(yùn)算,規(guī)則:0和0為0;0和1為1;1和1為1

let targetNum = 5 // 101let targetNum2 = 6 // 110print(targetNum | targetNum2) //print 7//targetNum: 101//targetNum2: 110//result:  111 (十進(jìn)制 7)

&(按位與):它會(huì)對(duì)兩個(gè)目標(biāo)數(shù)字的相同位置數(shù)字進(jìn)行與運(yùn)算,規(guī)則:0和0為0;0和1為0;1和1為1

let targetNum = 5 // 101let targetNum2 = 6 // 110print(targetNum & targetNum2) //print 4//targetNum: 101//targetNum2: 110//result:  100 (十進(jìn)制 4)

^(異或):它會(huì)對(duì)兩個(gè)目標(biāo)數(shù)字的相同位置數(shù)字進(jìn)行異或運(yùn)算,如果不同則該位為1,否則該位為0。規(guī)則:如0和0為0;0和1為1;1和1為0

let targetNum = 5 // 101let targetNum2 = 6 // 110print(targetNum ^ targetNum2) //print 3//targetNum: 101//targetNum2: 110//result:  011 (十進(jìn)制 3)

移位

>>(右移):它會(huì)對(duì)目標(biāo)數(shù)字按位右移x位

let targetNum = 5 // 101print(targetNum >> 2) //print 1//targetNum: 101//右移2位//result:  1 (十進(jìn)制 1)

<<(左移):它會(huì)對(duì)目標(biāo)數(shù)字按位左移x位(右邊補(bǔ)0)

let targetNum = 5 // 101print(targetNum << 2) //print 20//targetNum: 101//左移2位//result:  10100 (十進(jìn)制 20)

枚舉中的位操作

通過(guò)上文我們了解了位操作的具體計(jì)算方式,接下來(lái)看一下在枚舉中的具體應(yīng)用。

枚舉中的應(yīng)用

定義枚舉

OC

typedef NS_OPTIONS(NSInteger, CellExLineType) { CellExLineTypeTopLong  = 0, CellExLineTypeTopNone  = 1 << 0, //十進(jìn)制 1 CellExLineTypeBottomLong = 1 << 1, //十進(jìn)制 2 CellExLineTypeBottomNone = 1 << 2, //十進(jìn)制 4};

Swift

struct CellExLineType: OptionSet { let rawValue: Int static let topLong = CellExLineType(rawValue: 0) static let topNone = CellExLineType(rawValue: 1 << 0) static let bottomLong = CellExLineType(rawValue: 1 << 1) static let bottomNone = CellExLineType(rawValue: 1 << 2)}

位操作在枚舉中的作用

~(取反):用來(lái)剔除某個(gè)值

//OCself.lineType = CellExLineTypeTopNone;self.lineType |= CellExLineTypeBottomNone;self.lineType = self.lineType & ~CellExLineTypeTopNone; //self.lineTye 只包含CellExLineTypeBottomNone//Swiftvar lineType: CellExLineType = [.topNone, .bottomNone]lineType.remove(.topNone)

|(按位或):用來(lái)添加某個(gè)值

//OCself.lineType = CellExLineTypeTopNone; //self.lineType 包含CellExLineTypeTopNoneself.lineType = self.lineType | CellExLineTypeBottomNone; //self.lineType 包含CellExLineTypeTopNone和CellExLineTypeBottomNone//Swiftvar lineType: CellExLineType = [.bottomNone]lineType.insert(.topNone)

&(按位與):用來(lái)檢查是否包含某個(gè)值

//OCif ((self.lineType & CellExLineTypeTopNone) == CellExLineTypeTopNone) { NSLog(@"包含CellExLineTypeTopNone");}//Swiftvar lineType: CellExLineType = [.topNone, .bottomNone]if lineType.contains(.bottomNone) { print("包含bottomNone")}

^(異或):用來(lái)置反某個(gè)值(如果包含則剔除,如果不包含則添加)

//OCself.lineType = CellExLineTypeTopNone | CellExLineTypeBottomNone; //self.lineType 包含CellExLineTypeTopNone和CellExLineTypeBottomNoneself.lineType = self.lineType ^ CellExLineTypeTopNone; //self.lineTye 只包含CellExLineTypeBottomNoneself.lineType = self.lineType ^ CellExLineTypeTopNone; //self.lineType 包含CellExLineTypeTopNone和CellExLineTypeBottomNone//Swiftvar lineType: CellExLineType = [.topNone, .bottomNone]if lineType.contains(.topNone) { lineType.remove(.topNone)} else { lineType.insert(.topNone)}

在枚舉中使用位操作我們可以方便的給一個(gè)屬性值賦值多個(gè)值,比如下面的代碼給lineType賦值了CellExLineTypeTopNone和CellExLineTypeBottomNone屬性。這樣我們就可以在lineType的set方法里面處理CellExLineTypeTopNone和CellExLineTypeBottomNone的情況。

//OC- (void)setLineType:(CellExLineType)lineType { _lineType = lineType; if (lineType & CellExLineTypeTopNone) {  NSLog(@"top none"); } if (lineType & CellExLineTypeBottomNone) {  NSLog(@"bottom none"); }}//Swiftvar lineType: CellExLineType = [.topNone, .bottomNone]if lineType.contains(.topNone) { lineType.remove(.topNone)}if lineType.contains(.bottomNone) {}

在系統(tǒng)中的許多Enum也是這么使用的,如UIViewAutoresizing、UIViewAnimationOptions等。

為什么要在枚舉中使用位操作符?

在許多古老的微處理器上,位運(yùn)算比加減運(yùn)算略快,通常位運(yùn)算比乘除法運(yùn)算要快很多。在現(xiàn)代架構(gòu)中,情況并非如此:位運(yùn)算的運(yùn)算速度通常與加法運(yùn)算相同(仍然快于乘法運(yùn)算)可以給一個(gè)屬性同時(shí)設(shè)置多個(gè)值

感謝各位的閱讀!關(guān)于“怎樣通過(guò)Objective-C的枚舉學(xué)習(xí)iOS中位操作.md”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


本文名稱:怎樣通過(guò)Objective-C的枚舉學(xué)習(xí)iOS中位操作.md
標(biāo)題鏈接:http://weahome.cn/article/jcssgp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部