一、先來幾個經常使用的:html
- #define isRetina ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 960), [[UIScreen mainScreen] currentMode].size) : NO)
- #define isSimulator (NSNotFound != [[[UIDevice currentDevice] model] rangeOfString:@"Simulator"].location)
- #define isPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
- #define someThing (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)? ipad: iphone
二、基本的使用:c++
- //定義π值 3.1415926
- #define PI 3.1415926
- //則在程序用能夠以下使用
- double i=2*PI*3;
- //效果至關於 double i=2*3.1415926*3;
-
- //預處理命令能夠定義任何符合格式的形式,例如判斷年份是否閏年
- #define IS_LEAP_YEAR year%4==0&&year%100!=0||year%400==0
- //使用時則能夠直接
- if(IS_LEAP_YEAR)
-
- //或者能夠定義一個參數
- #define IS_LEAP_YEAR(y) y%4==0&&y%100!=0||y%400==0
- //使用時則能夠直接
- int ys=2012;
- if(IS_LEAP_YEAR(ys))
-
- //一般預處理程序定義在一行 若是好分行 好比說太長鬚要換行 須要使用「/」符號 表示還有下一行,多行分列也是如此,例:
- #Define IS_LEAP_YEAR year%4==0&&year%100!=0/
- ||year%400==0
- //宏定義參數後邊放一個# 那麼在調用該宏時,預處理程序將根據宏參數建立C風格的常量字符串 例:
- #define STR(x) # x
- //將會使得 隨後調用的
-
- NSLOG(STR(Programming in Objective-c./n));
- //顯示結果爲 Programming in Objective-c./n
三、關於#與##的操做符:c#
<1>.宏定義中字符串化操做符#:
#的功能是將其後面的宏參數進行字符串化操做,意思就是對它所應用的宏變量經過替換後在其左右各加上一個雙引號。例如app
- #define WARN_IF(EXPR)\
- do {\
- if (EXPR)\
- fprintf(stderr, "Warning: " #EXPR "\n");\
- } while(0)
-
- 上面代碼中的反斜線\主要用來轉譯換行符,即屏蔽換行符。
-
- 那麼以下的代碼調用:
- WARN_IF(divider == 0);
-
- 將被解析爲:
- do {\
- if (divider == 0)\
- fprintf(stderr, "Warning: " "divider == 0" "\n");\
- } while(0);
注意可以字符串化操做的必須是宏參數,不是隨隨便便的某個子串(token)都行的。iphone
<2>.宏定義中的鏈接符##:
鏈接符##用來將兩個token鏈接爲一個token,但它不能夠位於第一個token以前or最後一個token以後。注意這裏鏈接的對象只要是token就行,而不必定是宏參數,可是##又必須位於宏定義中才有效,因其爲編譯期概念(比較繞)。ide
- #define LINK_MULTIPLE(a, b, c, d) a##_##b##_##c##_##d
- typedef struct _record_type LINK_MULTIPLE(name, company, position, salary);
- /*
- * 上面的代碼將被替換爲
- * typedef struct _record_type name_company_position_salary;
- */
-
- 又以下面的例子:
- #define PARSER(N) printf("token" #N " = %d\n", token##N)
-
- int token64 = 64;
-
- 以下調用宏:
- PARSER(64);
-
- 將被解析爲:
- printf("token" "64" " = %d\n", token64);
-
- 在obj-c中,若是我有以下定義:
- #define _X(A, B) (A#B)
- #define _XX(A, B) _X([NSString stringWithFormat:@"%@_c", A], B)
- gcc將報錯!
- 正確的寫法爲:
- #define _XX(A, B) _X(([NSString stringWithFormat:@"%@_c", A]), B)
四、再來個宏定義 object-c 單例oop
- #define GTMOBJECT_SINGLETON_BOILERPLATE(_object_name_, _shared_obj_name_)
- static _object_name_ *z##_shared_obj_name_ = nil;
- + (_object_name_ *)_shared_obj_name_ {
- @synchronized(self) {
- if (z##_shared_obj_name_ == nil) {
- z##_shared_obj_name_ = [[self alloc] init];
- _GTMDevAssert((z##_shared_obj_name_ != nil), @」didn’t catch singleton allocation」);
- }
- }
- return z##_shared_obj_name_;
- }
-
- + (id)allocWithZone:(NSZone *)zone {
- @synchronized(self) {
- if (z##_shared_obj_name_ == nil) {
- z##_shared_obj_name_ = [super allocWithZone:zone];
- return z##_shared_obj_name_;
- }
- }
-
- _GTMDevAssert(NO, @」use the singleton API, not alloc+init」);
- return nil;
- }
-
- - (id)retain {
- return self;
- }
-
- - (NSUInteger)retainCount {
- return NSUIntegerMax;
- }
-
- - (void)release {
- }
-
- - (id)autorelease {
- return self;
- }
-
- - (id)copyWithZone:(NSZone *)zone {
- return self;
- }
五、條件編譯:spa
- #if !defined(FCDebug) || FCDebug == 0
- #define FCLOG(...) do {} while (0)
- #define FCLOGINFO(...) do {} while (0)
- #define FCLOGERROR(...) do {} while (0)
-
- #elif FCDebug == 1
- #define FCLOG(...) NSLog(__VA_ARGS__)
- #define FCLOGERROR(...) NSLog(__VA_ARGS__)
- #define FCLOGINFO(...) do {} while (0)
-
- #elif FCDebug > 1
- #define FCLOG(...) NSLog(__VA_ARGS__)
- #define FCLOGERROR(...) NSLog(__VA_ARGS__)
- #define FCLOGINFO(...) NSLog(__VA_ARGS__)
- #endif
六、參照C語言的預處理命令簡介 :.net
#define 定義一個預處理宏
#undef 取消宏的定義
#include 包含文件命令
#include_next 與#include類似, 但它有着特殊的用途
#if 編譯預處理中的條件命令, 至關於C語法中的if語句
#ifdef 判斷某個宏是否被定義, 若已定義, 執行隨後的語句
#ifndef 與#ifdef相反, 判斷某個宏是否未被定義
#elif 若#if, #ifdef, #ifndef或前面的#elif條件不知足, 則執行#elif以後的語句, 至關於C語法中的else-if
#else 與#if, #ifdef, #ifndef對應, 若這些條件不知足, 則執行#else以後的語句, 至關於C語法中的else
#endif #if, #ifdef, #ifndef這些條件命令的結束標誌.
defined 與#if, #elif配合使用, 判斷某個宏是否被定義
#line 標誌該語句所在的行號
# 將宏參數替代爲以參數值爲內容的字符竄常量
## 將兩個相鄰的標記(token)鏈接爲一個單獨的標記
#pragma 說明編譯器信息#warning 顯示編譯警告信息
#error 顯示編譯錯誤信息orm
參考連接:http://www.uml.org.cn/c++/200902104.asp