gpt4 book ai didi

c++ - 包括守卫风格,C++

转载 作者:行者123 更新时间:2023-11-30 00:37:56 25 4
gpt4 key购买 nike

我有一个 .h 文件,其中包含几个类定义。我想在这个文件中使用 C++ 的 include guards;但是,我想知道哪种使用包含防护的方式被认为是正确/正确的?

一个守卫保护一切

#ifndef FOO_BAR
#define FOO_BAR

class Foo
{
};

class Bar
{
};

#endif

或多个独立的守卫。

#ifndef FOO
#define FOO

class Foo
{
};

#endif

#ifndef BAR
#define BAR

class Bar
{
};

#endif

最佳答案

它们是包含守卫,防止文件的双重包含。所以它们应该为每个文件定义一次,而不是每个类或函数或其他任何东西。

关于c++ - 包括守卫风格,C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12327031/

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