当前位置:天才代写 > tutorial > C语言/C++ 教程 > C宏界说的小结

C宏界说的小结

2017-11-02 08:00 星期四 所属: C语言/C++ 教程 浏览:629

副标题#e#

实现代码实例

措施代码:

#include <stdio.h>     
#include <stdlib.h>     
#include <sys/types.h>     

/***** cplusplus *****/ 
#if 0     
#include <iostream>       
using namespace std;     
#endif     

// 获得指定地点上的一个字节或字     
#define MEM_B(x) (*((byte *)(x)))       
#define MEM_W(x) (*((word *)(x)))     

// 获得一个field在布局体(struct)中的偏移量     
#define FPOS(type, field) ((dword)&((type *)0)->field)     

// 将一个字母字符转换为大写     
#define UPCASE(c) (((c)>='a' && (c)<='z') ? ((c)-0x20) : (c))     

// 判定字符是否为十进制的数字     
#define DECCHECK(c) ((c)>='0' && (c)<='9')     

// 判定字符是否为十六进制的数字     
#define HEXCHECK(hex) (((hex)>='0' && (hex)<='9')||((hex)>='A' && (hex)<='F')||

((hex)>='a' && (hex)<='f'))                                                               
// 防备溢出的一个要领
#define INC_SAT(val) (val=((val)+1 > (val)) ? (val)+1 : (val))     

// 计较数组元素的个数     
#define ARRAY_SIZE(array) (sizeof(array)/sizeof(array[0]))     

int 
main(void)     
{
    int x = 0x1234abcd;     
    char c = 'a';     
    char dec = '5';     
    char hex = 'e';     
    char array[10] = {'1'};     

    //printf("MEM_B(x): 0x%p/n", MEM_B(x));     
    //printf("MEM_W(x): 0x%p/n", MEM_W(x));     

    printf("UPCASE(c): %c -> %c/n", c, UPCASE(c));     
    printf("DECCHECK(dec): %c -> %d/n", dec, DECCHECK(dec));     
    printf("HEXCHECK(hex): %c -> %d/n", hex, HEXCHECK(hex));     
    printf("ARRAY_SIZE(array): array[10] -> %d/n", ARRAY_SIZE(array));     

    printf("/n/****** MACRO ******//n");     
    printf("__LINE__: %d/n", __LINE__);     
    printf("__FILE__: %s/n", __FILE__);     
    printf("__DATE__: %s/n", __DATE__);     
    printf("__TIME__: %s/n", __TIME__);     
    printf("__func__: %s/n", __func__);     
#ifdef __cplusplus     
    cout <<"hello __cplusplus"<<endl;     
#endif     
#ifdef __STDC__     
    printf("hello __STDC__/n");     
#endif     

    printf("/n/****** sizeof() ******//n");     
    //printf("sizeof(byte): %d/n", sizeof(byte));     
    printf("sizeof(char): %d/n", sizeof(char));     
    printf("sizeof(signed char): %d/n", sizeof(signed char));     
    printf("sizeof(unsigned char): %d/n", sizeof(unsigned char));     
    printf("sizeof(short): %d/n", sizeof(short));     
    printf("sizeof(signed short): %d/n", sizeof(signed short));     
    printf("sizeof(unsigned short): %d/n", sizeof(unsigned short));     
    printf("sizeof(int): %d/n", sizeof(int));     
    printf("sizeof(signed int): %d/n", sizeof(signed int));     
    printf("sizeof(unsigned int): %d/n", sizeof(unsigned int));     
    printf("sizeof(long): %d/n", sizeof(long));     
    printf("sizeof(signed long): %d/n", sizeof(signed long));     
    printf("sizeof(unsigned long): %d/n", sizeof(unsigned long));     
    printf("sizeof(long long): %d/n", sizeof(long long));
    printf("sizeof(signed long long): %d/n", sizeof(signed long long));
    printf("sizeof(unsigned long long): %d/n", sizeof(unsigned long long));
    printf("sizeof(float): %d/n", sizeof(float));
    printf("sizeof(double): %d/n", sizeof(double));


    exit(EXIT_SUCCESS);     
}


#p#副标题#e#

运行功效:

[work@db-testing-com06-vm3.db01.baidu.com c++]$ gcc -W -o micro micro.c
[work@db-testing-com06-vm3.db01.baidu.com c++]$ ./micro  

UPCASE(c): a -> A
DECCHECK(dec): 5 – > 1
HEXCHECK(hex): e -> 1
ARRAY_SIZE(array): array[10] -> 10

/****** MACRO ******/
__LINE__: 50
__FILE__: micro.c
__DATE__: Dec 28 2010
__TIME__: 19:25:10
__func__: main
hello __STDC__

/****** sizeof() ******/
sizeof(char): 1
sizeof(signed char): 1
sizeof (unsigned char): 1
sizeof(short): 2
sizeof(signed short): 2
sizeof(unsigned short): 2
sizeof(int): 4
sizeof(signed int): 4
sizeof(unsigned int): 4
sizeof(long): 8
sizeof(signed long): 8
sizeof(unsigned long): 8
sizeof(long long): 8
sizeof(signed long long): 8
sizeof (unsigned long long): 8
sizeof(float): 4
sizeof(double): 8

==========================================

C宏界说的简朴总结

1,防备一个头文件被反复包括

#ifndef BODYDEF_H

#define BODYDEF_H

 //头文件内容

#endif

2,获得指定地点上的一个字节或字

#define  MEM_B( x )  ( *( (byte *) (x) ) )

#define  MEM_W( x )  ( *( (word *) (x) ) )

3,获得一个field在布局体(struct)中的偏移量

#define FPOS( type, field ) ( (dword) &(( type *) 0)-> field )
4,获得一个布局体中field所占用的字节数

#define FSIZ( type, field ) sizeof( ((type *) 0)->field )

5,获得一个变量的地点(word宽度)

#define  B_PTR( var )  ( (byte *) (void *) &(var) )

#define  W_PTR( var )  ( (word *) (void *) &(var) )

6,将一个字母转换为大写

#define  UPCASE( c ) ( ((c) >= ”a” && (c) <= ”z”) ? ((c) – 0x20) : (c) )

7,判定字符是不是10进值的数字

#define  DECCHK( c ) ((c) >= ”0” && (c) <= ”9”)

8,判定字符是不是16进值的数字

#define  HEXCHK( c ) ( ((c) >= ”0” && (c) <= ”9”) ||((c) >= ”A” && (c) <= ”F”) ||((c) >= ”a” && (c) <= ”f”) )

9,防备溢出的一个要领

#define  INC_SAT( val )  (val = ((val)+1 > (val)) ? (val)+1 : (val))

10,返回数组元素的个数

#define  ARR_SIZE( a )  ( sizeof( (a) ) / sizeof( (a[0]) ) )

11,利用一些 宏跟踪调试

ANSI尺度说明白五个预界说的宏名。它们是:

_LINE_ (两个下划线),对应%d
_FILE_     对 应%s
_DATE_   对应%s
_TIME_    对应%s
_STDC_

#p#副标题#e##b)

printf ("%s/n", CONS(A, A));               // compile error

这一行则是:

printf("%s/n", int(AeA));

INT_MAX和A都不会再被展开, 然而办理这个问题的要领很简朴. 加多一层中间转 换宏.

#p#分页标题#e#

加这层宏的用意是把所有宏的参数在这层里全部展开, 那么在转换宏里的那一个宏(_STR)就能获得正确的宏参数
#define STR(s)      _STR(s)          // 转换宏

#define CONS(a,b)   _CONS(a,b)       // 转换宏

printf("int max: %s/n", STR(INT_MAX));          // INT_MAX,int型的最大值,为一个变量 #include<climits>

输出为: int max: 0x7fffffff

STR(INT_MAX) –>  _STR(0x7fffffff) 然后再转换成字符串;

printf("%d/n", CONS (A, A));

输出为:200

CONS(A, A)  –>  _CONS((2), (2))  –> int((2)e(2))

"#"和"##"的一些应用特例

1、归并匿名变量名

#define  ___ANONYMOUS1(type, var, line)  type  var##line

#define  __ANONYMOUS0(type, line)  ___ANONYMOUS1(type, _anonymous, line)

#define  ANONYMOUS(type)  __ANONYMOUS0(type, __LINE__)

例:ANONYMOUS(static int);  即: static int _anonymous70;  70暗示该行行号;

第一层:ANONYMOUS(static int);  –>  __ANONYMOUS0 (static int, __LINE__);

第二层:                        –>  ___ANONYMOUS1(static int, _anonymous, 70);

第三层:                        –>  static int  _anonymous70;

即每次只能解开当前 层的宏,所以__LINE__在第二层才气被解开;

2、填充布局

#define  FILL(a)   {a, #a}

enum IDD {OPEN, CLOSE};

typedef struct MSG{

 IDD id;

 const char * msg;

}MSG;

MSG _msg[] = {FILL(OPEN), FILL(CLOSE)};

相当于:

MSG _msg[] = {{OPEN, "OPEN"},

           {CLOSE, "CLOSE"}};

#p#副标题#e#

3、记录文件名

#define  _GET_FILE_NAME(f)   #f

#define  GET_FILE_NAME(f)    _GET_FILE_NAME(f)

static char  FILE_NAME[] = GET_FILE_NAME(__FILE__);

4、获得一个数值范例所对应的字符串缓冲巨细

#define  _TYPE_BUF_SIZE(type)  sizeof #type

#define  TYPE_BUF_SIZE(type)   _TYPE_BUF_SIZE(type)

char  buf [TYPE_BUF_SIZE(INT_MAX)];

  –>  char  buf[_TYPE_BUF_SIZE(0x7fffffff)];

  –>  char  buf[sizeof "0x7fffffff"];

这里相当于:

char  buf[11];

==========================================

C宏界说的能力总结

1,防备一个头文件被反复包括

#ifndef COMDEF_H

#define COMDEF_H

//头文件内容

#endif

2,从头界说一些范例,防备由于 各类平台和编译器的差异,而发生的范例字节数差别,利便移植。

typedef unsigned char      boolean;     /* Boolean value type. */

typedef unsigned long int uint32;      /* Unsigned 32 bit value */

typedef unsigned short     uint16;      /* Unsigned 16 bit value */

typedef unsigned char      uint8;       /* Unsigned 8 bit value */

typedef signed long int    int32;       /* Signed 32 bit value */

typedef signed short       int16;       /* Signed 16 bit value */

typedef signed char        int8;        /* Signed 8 bit value */

//下面的不发起利用

typedef unsigned char     byte;         /* Unsigned 8 bit value type. */

typedef unsigned short    word;         /* Unsinged 16 bit value type. */

typedef unsigned long     dword;        /* Unsigned 32 bit value type. */

typedef unsigned char     uint1;        /* Unsigned 8 bit value type. */

typedef unsigned short    uint2;        /* Unsigned 16 bit value type. */

typedef unsigned long     uint4;        /* Unsigned 32 bit value type. */

typedef signed char       int1;         /* Signed 8 bit value type. */

typedef signed short      int2;         /* Signed 16 bit value type. */

typedef long int          int4;         /* Signed 32 bit value type. */

typedef signed long       sint31;       /* Signed 32 bit value */

typedef signed short      sint15;       /* Signed 16 bit value */

typedef signed char       sint7;        /* Signed 8 bit value */

3,获得指定地点上的一个字节或字

#define MEM_B( x ) ( *( (byte *) (x) ) )

#define MEM_W( x ) ( *( (word *) (x) ) )

#p#副标题#e#

4,求最大值和最小值

#define MAX( x, y ) ( ((x) > (y)) ? (x) : (y) )

#define MIN( x, y ) ( ((x) < (y)) ? (x) : (y) )

5,获得一个field在布局体 (struct)中的偏移量

#define FPOS( type, field ) /

/*lint -e545 */ ( (dword) &(( type *) 0)-> field ) /*lint +e545 */

6,获得一个布局体中field所占用的字节数

#define FSIZ( type, field ) sizeof( ((type *) 0)->field )

7,凭据LSB名目把两个字节转化为一个Word

#define FLIPW( ray ) ( (((word) (ray)[0]) * 256) + (ray)[1] )

8,凭据LSB名目把一个Word转化为两个字节

#define FLOPW( ray, val ) /

(ray)[0] = ((val) / 256); /

(ray)[1] = ((val) & 0xFF)

9,获得一个变量的地点(word宽度)

#define B_PTR( var ) ( (byte *) (void *) &(var) )

#define W_PTR( var ) ( (word *) (void *) &(var) )

10,获得一个字的高位和低位字节

#define WORD_LO(xxx) ((byte) ((word)(xxx) & 255))

#define WORD_HI(xxx) ((byte) ((word)(xxx) >> 8))

11,返回一个比X大的最靠近的8的倍数

#define RND8( x )       ((((x) + 7) / 8 ) * 8 )

12,将一个字母转换为大写

#define UPCASE( c ) ( ((c) >= ”a” && (c) <= ”z”) ? ((c) – 0x20) : (c) )

13,判定字符是不是10进值的数字

#define DECCHK( c ) ((c) >= ”0” && (c) <= ”9”)

14,判定字符是不是16进值的数字

#define HEXCHK( c ) ( ((c) >= ”0” && (c) <= ”9”) ||/

                    ((c) >= ”A” && (c) <= ”F”) ||/

((c) >= ”a” && (c) <= ”f”) )

15,防备溢出的一个要领

#define INC_SAT( val ) (val = ((val)+1 > (val)) ? (val)+1 : (val))

16,返回数组元素的个数

#define ARR_SIZE( a ) ( sizeof( (a) ) / sizeof( (a[0]) ) )

17,返回一个 无标记数n尾的值MOD_BY_POWER_OF_TWO(X,n)=X%(2^n)

#define MOD_BY_POWER_OF_TWO( val, mod_by ) /

        ( (dword)(val) & (dword)((mod_by)-1) )

18,对付IO空间映射在存储空间的布局,输入输出 处理惩罚

#define inp(port)         (*((volatile byte *) (port)))

#define inpw(port)        (*((volatile word *) (port)))

#define inpdw(port)       (* ((volatile dword *)(port)))

 

#define outp(port, val)   (*((volatile byte *) (port)) = ((byte) (val)))

#define outpw(port, val) (*((volatile word *) (port)) = ((word) (val)))

#define outpdw(port, val) (*((volatile dword *) (port)) = ((dword) (val)))

#p#副标题#e##b)

int main()

{

 printf(STR(vck));           // 输出字符串"vck"

 printf("%d/n", CONS(2,3)); // 2e3 输出:2000

 return 0;

}

#p#副标题#e##b)

#define CONS(a,b)   _CONS(a,b)       // 转换宏

printf("int max: %s/n", STR(INT_MAX));          // INT_MAX,int型 的最大值,为一个变量 #include<climits>

输出为: int max: 0x7fffffff

STR(INT_MAX) –> _STR(0x7fffffff) 然后再转换成字符串;

printf("%d/n", CONS(A, A));

输出为:200

CONS(A, A) –> _CONS((2), (2)) –> int((2)e(2))

三、”#”和”##”的一些应用特例

1、归并匿名变量 名

#define ___ANONYMOUS1(type, var, line) type var##line

#define __ANONYMOUS0(type, line) ___ANONYMOUS1 (type, _anonymous, line)

#define ANONYMOUS(type) __ANONYMOUS0(type, __LINE__)

例:ANONYMOUS(static int); 即: static int _anonymous70; 70暗示该行行号;

第一层:ANONYMOUS(static int); –> __ANONYMOUS0(static int, __LINE__);

第二层:                        –> ___ANONYMOUS1(static int, _anonymous, 70);

第三层:                        –> static int _anonymous70;

即每次只能解开当前层的宏,所以__LINE__在第二层才气被 解开;

2、填充布局

#define FILL(a)   {a, #a}

enum IDD{OPEN, CLOSE};

typedef struct MSG {

IDD id;

const char * msg;

}MSG;

MSG _msg[] = {FILL(OPEN), FILL(CLOSE)};

相当于:

MSG _msg[] = {{OPEN, "OPEN"},

           {CLOSE, "CLOSE"}};

3、记录 文件名

#define _GET_FILE_NAME(f)   #f

#define GET_FILE_NAME(f)    _GET_FILE_NAME(f)

static char FILE_NAME[] = GET_FILE_NAME(__FILE__);

4、获得一个数值范例所对应的字符串缓冲巨细

#define _TYPE_BUF_SIZE(type) sizeof #type

#define TYPE_BUF_SIZE(type)   _TYPE_BUF_SIZE(type)

char buf [TYPE_BUF_SIZE(INT_MAX)];

  –> char buf[_TYPE_BUF_SIZE(0x7fffffff)];

  –> char buf[sizeof "0x7fffffff"];

这里相当于:

char buf[11];

 

    关键字:

天才代写-代写联系方式