概述:在c 中,使用`extern`关键字可实现在源文件之间共享变量与类成员函数。通过声明变量或类在头文件中,再在一个源文件中定义,其他源文件通过`extern`引用,促使模块化、可维护的代码组织。
在c 中,extern关键字可用于在源文件之间共享变量。它告诉编译器某个变量的声明在其他源文件中,其定义在当前源文件之外。以下是基础和高级功能的示例:
基础功能:
示例源代码:
// 文件: variable.h #pragma once // 在头文件中声明变量,不进行定义 extern int sharedvariable;
// 文件: file1.cpp #include "variable.h" // 在源文件中定义变量 int sharedvariable = 42;
// 文件: file2.cpp #include#include "variable.h" // 在另一个源文件中使用共享变量 extern int sharedvariable; int main() { std::cout << "共享变量的值:" << sharedvariable << std::endl; return 0; }
在这个示例中,variable.h头文件声明了sharedvariable,而file1.cpp源文件定义了这个变量。在file2.cpp中,通过extern关键字引用了sharedvariable,并打印了其值。
高级功能:
示例源代码:
// 文件: shared.h #pragma once class sharedclass { public: void displaymessage(); };
// 文件: file1.cpp #include "shared.h" #include// 定义类的成员函数 void sharedclass::displaymessage() { std::cout << "hello from sharedclass!" << std::endl; }
// 文件: file2.cpp #include "shared.h" int main() { // 引用已定义的类成员函数 sharedclass sharedobject; sharedobject.displaymessage(); return 0; }
在这个示例中,shared.h头文件声明了sharedclass类,并在file1.cpp源文件中定义了它的成员函数。然后,在file2.cpp中使用了sharedclass,并调用了它的成员函数。
这两个示例展示了使用extern在源文件之间共享变量和类成员函数的方法,有助于实现模块化的代码结构。