在c++中为什么要防止头文件被重复包含

2024-12-05 16:35:35
推荐回答(1个)
回答(1):

#ifndef ABC_H #define ABC_H int i;#endif
你是这么用的么?首先cpp中不建议你定义变量,然后建议你用extern int i;这种方式