標籤:http ar io os 使用 sp for java on
在java中,我們經常使用的是單例模式,這些設計模式在ios開發中也比較常用,最近也在考慮使用在ios開發中使用單例模式
在objective-c中,需要在.m檔案裡面定義個static變數來表示全域變數(和java裡面的類變數類似,但是在objective-c中,static變數只是在編譯時間候進行初始化,對於static變數,無論是定義在方法體裡面 還是在方法體外面其範圍都一樣
在我們經常使用的UITableViewController裡面,在定義UITableCellView的時候,模板經常會使用以下代碼
協助
1234567891011 |
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; return cell; } |
在上面 定義了static變數,這個變數在編譯期會對這個變數進行初始化賦值,也就是說這個變數值要麼為nil,要麼在編譯期就可以確定其值,一般情況下,只能用NSString或者基本類型 ,並且這個變數只能在cellForRowAtIndexPath 訪問,這個變數和java裡面的static屬性一樣,但是java的static屬性是可以在java類裡面的任何訪問,定義在方法體裡面的static變數只能在 對應的訪問裡面訪問,但是變數確是類變數。這個和C語言裡面的static的變數屬性一樣。
協助
1234567891011 |
void counter{ static int count = 0; count ++; } counter(); counter(); |
上面代碼執行完成之後,第一次count的值為1,第二次調用count的值為2
static變數也可以定義在.m的方法體外,這樣所有的方法內部都可以訪問這個變數。但是在類之外是沒有辦法方法的,也就是不能用 XXXClass.staticVar 的方式來訪問 staticVar變數。相當於static變數都是私人的。
如果.m檔案和方法體裡面定義了同名的static 變數,那麼方法體裡面的執行個體變數和全域的static變數不會衝突,在方法體內部訪問的static變數和全域的static變數是不同的。
協助
123456789101112131415161718192021 |
@implementation IFoundAppDelegate static NSString * staticStr = @"test"; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { static NSString * staticStr = @"test2"; NSLog(@"the staticStr is %@ -- %d",staticStr,[staticStr hash]); } - (void)applicationWillResignActive:(UIApplication *)application { NSLog(@"the staticStr is %@ -- %d",staticStr,[staticStr hash]); } |
以上兩個static變數是兩個不同的變數,在didFinishLaunchingWithOptions方法內部,訪問的是方法體內部定義的staticStr變數,在applicationWillResignActive方法體裡面,訪問的全域定義的staticStr變數。可以通過日誌列印其 hash來進行確認兩個變數是否一樣。
objective-c static變數的使用總結