我是靠谱客的博主 苗条冬瓜,最近开发中收集的这篇文章主要介绍8、#error、#warning、#line的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、这三类预处理器指示字的作用

①#error message,用于自定义一条编译错误信息,其中message不用双引号;
②#warning message ,用于自定义一条编译警告信息,语法和①同;
③#line number filename ,其中filename可以省略,它的本质是重定义__LINE__和__FILE__,用于强制指定新的行号和新的文件名,并对源程序的代码进行重新编号,现代工程代码中较为少用,了解即可。

二、为什么要使用这些指示字

既然是指示字,当然也就是为了起指示作用,也就是让你的代码的可读性更好,更利于人们去使用,下面通过实例来去分析用法

1、#error message

#include <stdio.h>
#ifndef __cplusplus
    #error This file should be processed with C++ compiler.
#endif
class CppClass
{
private:
    int m_value;
public:
    CppClass()
    {
        
    }
    
    ~CppClass()
    {
    }
};
int main()
{
    return 0;
}

在这里插入图片描述
为什么会出现这种情况呢,原因是这虽然是.c文件,但是源码明显是c++的代码,所以得用g++编译器,然后我们看到#error也就知道了作者自定义了一条错误编译信息,也就是提醒使用的人要用g++编译器了。

2、#warning message

该指示字也是和#error message的用法一样,区别指示它只是提示警告信息,能够通过编译,而#error message在编译的时候是会报错的。

#include <stdio.h>

void f()
{
#if ( PRODUCT == 1 )
    printf("This is a low level product!n");
#elif ( PRODUCT == 2 )
    printf("This is a middle level product!n");
#elif ( PRODUCT == 3 )
    printf("This is a high level product!n");
#else
	#warning The PRODUCT is not defined!,you should define it to output the correct outcome.
#endif
}

int main()
{
    f();
    
    printf("1. Query Information.n");
    printf("2. Record Information.n");
    printf("3. Delete Information.n");

#if ( PRODUCT == 1 )
    printf("4. Exit.n");
#elif ( PRODUCT == 2 )
    printf("4. High Level Query.n");
    printf("5. Exit.n");
#elif ( PRODUCT == 3 )
    printf("4. High Level Query.n");
    printf("5. Mannul Service.n");
    printf("6. Exit.n");
#endif
    
    return 0;
}

在这里插入图片描述

3、#line message

#include <stdio.h>

// The code section is written by A.
// Begin
#line 1 "a.c"

// End

// The code section is written by B.
// Begin
#line 1 "b.c"

// End

// The code section is written by Delphi.
// Begin
#line 1 "delphi_tang.c"


int main()
{
    printf("%s : %dn", __FILE__, __LINE__);
    
    printf("%s : %dn", __FILE__, __LINE__);
    
    return 0;
}

// End

在这里插入图片描述

最后

以上就是苗条冬瓜为你收集整理的8、#error、#warning、#line的使用的全部内容,希望文章能够帮你解决8、#error、#warning、#line的使用所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部