我是靠谱客的博主 现代咖啡,最近开发中收集的这篇文章主要介绍include和define的使用定义,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、include

自已写的函数用include "file.h"来包含,宏定义一般也放在file.h文件里。
file.h文件格式:int func(int x,int y);
预编译:gcc -E main.c -o main.i//生成.i的文件,不检查语法错误。
二、define
#undefine终止宏定义
(1)选择性编译
#ifdef  AAA//如果定义过AAA的宏就执行一段代码,否则执行二段代码
    代码段一
#else
    代码段二
#endif
(2)和第一种互补//防止头文件重复包含
#ifndef AAA//如果没有定义过AAA的宏就执行一段代码,否则执行二段代码
    代码段一
#else
    代码段二
#endif
(3)
#if 表达式
    代码段一
#else
    代码段二
#endif

编写头文件的格式:
#ifndef __宏名_H__
#define __宏名_H__
extern int 宏名(int x , int y);//声明函数名称
#endif
在程序里选择执行语句的方式:
#define AAA 1/0 //1和0控制裁剪代码
int main()
{
    #if AAA
        代码段一
    #endif
}

(1)已知一个数组table,用一个宏定义,求出数据的元素个数。

#define NTBL (sizeof(table) / sizeof(table[0]))

(2)宏中"#"和"##"的用法

一般用法

需要知道宏定义中直接将变量名变成字符串#,和将两个变量名拼接成字符串的用法##

#define STR(s) #s
#define CONS(a,b) int(a##e##b)

int main(void)
{
    printf(STR(vck)); // 输出字符串"vck"
    printf("%dn", CONS(2,v3)); // 2e3 输出:2000
    return 0;

当宏参数是另一个宏的时候
需要注意的是凡宏定义里有用'#'或'##'的地方宏参数是不会再展开.
1, 非'#'和'##'的情况
#define TOW (2)
#define MUL(a,b) (a*b)
printf("%d*%d=%dn", TOW, TOW, MUL(TOW,TOW));
这行的宏会被展开为:
printf("%d*%d=%dn", (2), (2), ((2)*(2)));
MUL里的参数TOW会被展开为(2).

2, 当有'#'或'##'的时候
#define A (2)
#define STR(s) #s
#define CONS(a,b) int(a##e##b)
printf("int max: %sn", STR(INT_MAX)); // INT_MAX #include<climits>
这行会被展开为:
printf("int max: %sn", "INT_MAX");
printf("%sn", CONS(A, A)); // compile error
这一行则是:
printf("%sn", int(AeA));
A不会再被展开, 然而解决这个问题的方法很简单. 加多一层中间转换宏.
加这层宏的用意是把所有宏的参数在这层里全部展开, 那么在转换宏里的那一个宏(_STR)就能得到正确的宏参数.
#define A (2)
#define _STR(s) #s
#define STR(s) _STR(s) // 转换宏
#define _CONS(a,b) int(a##e##b)
#define CONS(a,b) _CONS(a,b) // 转换宏
printf("int max: %sn", STR(INT_MAX)); // INT_MAX,int型的最大值,为一个变量
#include<climits>
输出为: int max: 0x7fffffff
STR(INT_MAX) --> _STR(0x7fffffff) 然后再转换成字符串;
printf("%dn", CONS(A, A));
输出为:200
CONS(A, A) --> _CONS((2), (2)) --> int((2)e(2))-->2*10^2 --> 200

三、'#'和'##'的一些应用特例  
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];
 

/***********************************
 *
 * #  把宏参数变为一个字符串
 * ## 把两个宏参数贴合在一起
 * Author: sunboy_2050
 * Date  : 2010-11-22
 *
 **********************************/
#include <iostream>
#include <climits> 
using namespace std;
#define STR(s) #s
#define CONS(a, b) int(a##e##b)
#define TOW (2)
#define MUL(a, b) (a*b)
#define A 2
#define _STR(s) #s
#define STR2(s) _STR(s) //转换宏
#define _CONS(a, b) int(a##e##b)
#define CONS2(a, b) _CONS(a, b) //转换宏
#define __ANONYMOUS1(type, var, line) type var##line
#define _ANONYMOUS0(type, line) __ANONYMOUS1(type, _anonymous, line)
#define ANONYMOUS(type) _ANONYMOUS0(type, __LINE__)
#define FILL(a) {a, #a}
#define _TYPE_BUF_SIZE(type) sizeof #type
#define TYPE_BUF_SIZE(type) _TYPE_BUF_SIZE(type)

int main()
{
    cout<<(STR(abcd))<<endl; //输出 "abcd"
    cout<<(STR("abcd"))<<endl; //输出 ""abcd""
    cout<<CONS(2, 3)<<endl;  //输出 2e3 = 2*10^3 = 2000
    cout<<endl;
    cout<<TOW<<"*"<<TOW<<"="<<MUL(TOW, TOW)<<endl; //(2)*(2)=((2)*(2))=4
    
    cout<<endl;
    cout<<"STR2(INT_MAX): "<<STR2(INT_MAX)<<endl; //STR2(INT_MAX) --> _STR(0x7fffffff) --> _STR(2147483647) 
    cout<<"CONS2(A, A): "<<CONS2(A, A)<<endl; //CONS2(A, A) --> _CONS(2, 2) --> int(2e2) --> 2*10^2 --> 200
    
    cout<<endl;
    //cout<<ANONYMOUS(static int)<<endl;
    cout<<endl;
    enum IDD{OPEN, CLOSE};
    typedef struct _MSG{
        IDD id;
        const char *msg;
    }MSG;
    MSG _msg[] = {FILL(OPEN), FILL(CLOSE)}; //{FILL(OPEN), FILL(CLOSE)} --> {{OPEN, "OPEN"},{CLOSE, "CLOSE"}}
    cout<<_msg<<endl;
    cout<<endl;
    char buf[TYPE_BUF_SIZE(INT_MAX)];
    cout<<TYPE_BUF_SIZE(INT_MAX)<<endl;
    
    return 0;
}

Result:

[work@db-testing-com06-vm3.db01.baidu.com c++]$ g++ -o define1 define1.c 

[work@db-testing-com06-vm3.db01.baidu.com c++]$ ./define1                

abcd

"abcd"

2000

2*2=4

STR2(INT_MAX): 2147483647

CONS2(A, A): 200

0x7fbffff750

11
 

最后

以上就是现代咖啡为你收集整理的include和define的使用定义的全部内容,希望文章能够帮你解决include和define的使用定义所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部