您好,登錄后才能下訂單哦!
一,全局變量
1,在m文件中的所有方法,類定義和函數定義之外
例:Square.m中定義一個全局變量 , 在main.m中引用
Square.m代碼如下:
// // Square.m // Square // // Created by Apple on 2017/9/9. // Copyright 2017年 Apple. All rights reserved. // #import "Square.h" int global_val = 20;//定義一個全局變量 @implementation Square : Rectangle -(void) setSide:(int)s { [ self setWidth:s addHeight:s]; } -(int) side { return self.width; } @end
使用外部的全局變量要使用extend關鍵字
main.m代碼如下:
// // main.m // Square // // Created by Apple on 2017/9/9. // Copyright 2017年 Apple. All rights reserved. // #import <Foundation/Foundation.h> #import "Square.h" int main(int argc, const char * argv[]) { @autoreleasepool { extern int global_val;// int s = global_val; NSLog(@"我得到的全局變量為 : %i" , s); return 0;} }
結果如下:
既然是全局變量,那么任何地方的修改都會在全局產生作用
進一步測試
Square.m代碼:
// // Square.m // Square // // Created by Apple on 2017/9/9. // Copyright 2017年 Apple. All rights reserved. // #import "Square.h" int global_val = 20;//定義一個全局變量 @implementation Square : Rectangle -(void) setSide:(int)s { [ self setWidth:s addHeight:s]; } -(int) side { return self.width; } -(void) change { global_val = 30;//此處改變全局變量的值 } -(int) get_global { return global_val; } @end
main.m
// // main.m // Square // // Created by Apple on 2017/9/9. // Copyright 2017年 Apple. All rights reserved. // #import <Foundation/Foundation.h> #import "Square.h" int main(int argc, const char * argv[]) { @autoreleasepool { extern int global_val;// int s = global_val; NSLog(@"我得到的全局變量為 : %i" , s); Square *mySquare = [[Square alloc] init]; [mySquare change]; NSLog(@"Square change 后 s : %i ;;;;; 的全局變量 : %i" , s , global_val); global_val = 100; NSLog(@"s = %i , Square 中的全局變量 : %i " , s , [mySquare get_global]); return 0;} }
結果:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。