gpt4 book ai didi

C++ header 保护

转载 作者:太空宇宙 更新时间:2023-11-03 10:28:13 28 4
gpt4 key购买 nike

假设我有以下头文件:

#ifndef TESTCLASS_H
#define TESTCLASS_H

#include <string>

class TestClass
{
public:
TestClass();
std::string test();
};

#endif // TESTCLASS_H

我必须在#include <string>周围放一个守卫吗?还有吗?如果不是,如果 main.cpp 也有 #include <string> 怎么办? ?

最佳答案

不,因为 string 头文件有自己的包含保护(所有合理库的头文件也是如此)。

关于C++ header 保护,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26523605/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com