根据我的要求。假设我有以下文件
abc.h //used for C file
int new; // All C++ keywords, new use as a variable
char class; // All C++ keywords, class use as a variable
Actual_task();
abc.c //C file
main()
{
...//Body of file where they have used new and class variable
new++; //for an example
class = 'C';
actual_task();//One function is getting called here
}
我有一个.cpp
文件需要abc.h
使用included
该文件actual_task()
:
CPPfile.cpp
extern "C"{
#include "abc.h"
}
然后它会像变量一样抛出errors
并且class
不能new
像变量一样使用。
那么如何在文件中使用C
头cpp
文件呢?