posts - 134,comments - 22,trackbacks - 0

          看到內核代碼中有很多地方都使用了#if defined(),可是卻找不到這個東東的定義,主要是define()。它和我們常用的#ifdef有什么不同嗎?

          4.2.3 Defined The special operator defined is used in #if and #elif expressions to test whether a certain name is defined as a macro. defined name and defined (name) are both expressions whose value is 1 if name is defined as a macro at the current point in the program, and 0 otherwise. Thus, #if defined MACRO is precisely equivalent to #ifdef MACRO.

          defined is useful when you wish to test more than one macro for existence at once. For example,

          #if defined (__vax__) || defined (__ns16000__)

          would succeed if either of the names __vax__ or __ns16000__ is defined as a macro.

          Conditionals written like this:

          #if defined BUFSIZE && BUFSIZE >= 1024

          can generally be simplified to just #if BUFSIZE >= 1024, since if BUFSIZE is not defined, it will be interpreted as having the value zero.

          If the defined operator appears as a result of a macro expansion, the C standard says the behavior is undefined. GNU cpp treats it as a genuine defined operator and evaluates it normally. It will warn wherever your code uses this feature if you use the command-line option -pedantic, since other compilers may handle it differently.
          posted on 2010-07-27 14:22 何克勤 閱讀(2810) 評論(1)  編輯  收藏 所屬分類: C/C++

          FeedBack:
          # re: #if defined()的含義(ZZ)[未登錄]
          2011-11-04 16:43 | jack
          it's usefull   回復  更多評論
            
          主站蜘蛛池模板: 海南省| 天津市| 五莲县| 辽源市| 濮阳市| 扎赉特旗| 蛟河市| 略阳县| 大埔区| 鞍山市| 马山县| 大英县| 灵石县| 广宗县| 呼伦贝尔市| 黄平县| 安西县| 神木县| 田阳县| 桂东县| 泗水县| 灌南县| 深州市| 青海省| 达日县| 来凤县| 嘉善县| 舟曲县| 仪陇县| 鄂伦春自治旗| 东明县| 海阳市| 呼伦贝尔市| 大竹县| 武夷山市| 兴安县| 广河县| 布尔津县| 密山市| 福州市| 唐海县|