C++ 在头文件与实现 (.cpp) 文件中定义构造函数

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/4761834/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 16:23:53  来源:igfitidea点击:

Defining constructor in header file vs. implementation (.cpp) file

c++constructorheader-files

提问by Andrea

I can define the body of a class constructor in the class .hfile or in the implementation file .cpp. These two styles are probably identical as far as the compiler is concerned within a specific project (project for me means DLL). Same applies to any member functions really: they can be defined in the header file or just declared there and then defined in the cpp file.

我可以在类.h文件或实现文件.cpp 中定义类构造函数的主体。就特定项目中的编译器而言,这两种样式可能是相同的(项目对我来说意味着DLL)。这同样适用于任何成员函数:它们可以在头文件中定义,也可以在头文件中声明,然后在 cpp 文件中定义。

However, I found that if I need to include such class header file(s) in different projects (meaning that ultimately the code that uses the header file ends up in a different DLL) then having the actual implementation in the header file causes some headaches at compilation (not at linking... I don't even get to that point). Why? Well I won't go too much in detail but the compiler obviously tries to resolve all the functions which might be defined in other header files etc., forcing the poor developer to start pulling in various header files etc.

但是,我发现如果我需要在不同的项目中包含这样的类头文件(意味着最终使用头文件的代码最终在不同的DLL 中),那么在头文件中实际实现会导致一些麻烦在编译(不是在链接...我什至没有达到那个点)。为什么?好吧,我不会详细介绍,但编译器显然会尝试解析可能在其他头文件等中定义的所有函数,从而迫使可怜的开发人员开始拉入各种头文件等。

Isn't it always best to keep header files free of any implementation and just use them for 'declarations'? That would make it easier to include them in more than one projects w/o having to carry around a lot of extra junk.

保持头文件不受任何实现并仅将它们用于“声明”不是总是最好的吗?这将使将它们包含在多个项目中变得更容易,而不必携带大量额外的垃圾。

What is your opinion about this?

您对此有何看法?

回答by Thomas

Keep your headers free of implementations, unless you want the implementations to be inlined (e.g. trivial getters/setters). And unless they're templates, of course.

保持你的头文件没有实现,除非你希望实现被内联(例如简单的 getter/setter)。当然,除非它们是模板。

I see no reason to make an exception for constructors. Put them in the .cpp file.

我认为没有理由对构造函数进行例外处理。将它们放在 .cpp 文件中。

回答by Sergei Tachenov

One important point to note is that if a member function is defined inside a header file, it must be either inside the class body or it must be marked explicitly as inline. In other words, it is plain wrong to do this in a header file:

需要注意的重要一点是,如果在头文件中定义了成员函数,则它必须位于类主体内或必须显式标记为inline. 换句话说,在头文件中这样做是完全错误的:

class A {
  public:
    A();
};

A::A() {
  // constructor body
}

The reason it's wrong is because it will make the compiler include the definition in each compilation unit, while it's obvious that any function must be defined only once. Here are correct ways to do the same thing:

之所以出错,是因为它会使编译器在每个编译单元中都包含定义,而很明显,任何函数都必须只定义一次。以下是做同样事情的正确方法:

class A {
  public:
    inline A();
};

inline A::A() {
  // constructor body
}

Or:

或者:

class A {
  public:
    inline A() { // inline isn't required here, but it's a good style
     // constructor body
    }
};

In both cases the constructor is inline. The only correct way to make it a regular out-of-line function would be to define it in the implementation file, not in the header. This is the most important difference between these two approaches.

在这两种情况下,构造函数都是内联的。使其成为常规外联函数的唯一正确方法是在实现文件中而不是在头文件中定义它。这是这两种方法之间最重要的区别。

Now, it is worth noting that inlining is an optimization. And as always with optimizations, they are best avoided until proved necessary. Among other problems inlining can lead to, there is the compatibility problem: if you change the body of a function that is not inlined, you only need to recompile the unit where it is defined, and everyone starts using the new implementation right away. With inlined functions, you need to recompile every unit that includes the relevant header, which can be a pain, especially if the header is used across different projects by different people.

现在,值得注意的是内联是一种优化。与优化一样,在证明有必要之前最好避免使用它们。内联可能导致的其他问题中,存在兼容性问题:如果您更改未内联的函数体,则只需重新编译定义它的单元,每个人都会立即开始使用新的实现。使用内联函数,您需要重新编译包含相关标头的每个单元,这可能会很痛苦,尤其是当不同的人在不同的项目中使用标头时。

In other words, use regular out-of-line definitions wherever possible until it is proved by profiling that a particular function call is a performance bottleneck. The only reasonable exception to this rule are trivial setters and getters, and even with them it is better to be careful - one day they may become non-trivial and it will mean a lot of recompilation and compatibility breaking.

换句话说,尽可能使用常规的外部定义,直到通过分析证明特定的函数调用是性能瓶颈。这条规则唯一合理的例外是微不足道的 setter 和 getter,即使使用它们也最好小心 - 有一天它们可能变得非常重要,这将意味着大量的重新编译和兼容性破坏。

回答by Thomas Matthews

Another note to consider: any changes to a header file require rebuilding all files that include that header file. Most build systems will rebuild source (*.cpp/.cc) files that depend on the modified header file.

另一个需要考虑的注意事项:对头文件的任何更改都需要重建包含该头文件的所有文件。大多数构建系统将重建依赖于修改后的头文件的源 (*.cpp/.cc) 文件。

If you change a method of a class defined in a header file, all sources files including the header file will be rebuilt. If you change a method in a source file, only the source file is rebuilt. This could be an issue for medium to larger projects.

如果更改头文件中定义的类的方法,则将重建包括头文件在内的所有源文件。如果更改源文件中的方法,则仅重建源文件。这可能是大中型项目的问题。

To simplify the build process, most methods of a class should be defined in a source file. Small methods and other candidates for inlining should be defined in the header file.

为了简化构建过程,类的大多数方法都应该在源文件中定义。应在头文件中定义用于内联的小方法和其他候选方法。