Include .cpp instead of header(.h)(包含 .cpp 而不是 header(.h))
问题描述
在某些情况下,我们包含 .cpp 文件而不是标准头文件 (.h),例如:
There are some cases when we include .cpp file instead of standard header file (.h), for example:
#include "example.cpp"
代替
#include "example.h"
它似乎有效,但这是否安全还是我应该避免它?
It seems to work but is this safe or should I avoid it?
编译时间呢?
推荐答案
这是懒惰的编码.使用头文件.是的,它们可以增加编译时间,但它们意味着您可以轻松地重新实现代码块,或者更好的是,其他开发人员可以随时重新实现.头文件用作 C/C++
代码将要执行的操作的模板.丢弃或忽略它是一个坏主意.
It's lazy coding. Use header files. Yes they can increase compile time but they mean that you can easily re-implement chunks of your code, or better yet, another developer could at anytime. The header file serves as a template for what your C/C++
code is going to do. It's a bad idea to discard or ignore it.
这篇关于包含 .cpp 而不是 header(.h)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:包含 .cpp 而不是 header(.h)
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 近似搜索的工作原理 2021-01-01