如何包含所有boost头文件?

发布于 2024-08-19 20:12:01 字数 174 浏览 4 评论 0原文

在 Java 中,如果您想要命名空间中的所有类,您可以这样做:

import com.bobdylan.*;

无论如何我可以获得类似于以下的结果:

import boost.*;

(C++ 除外)

In Java if you wanted all the classes in a namespace you could just do this:

import com.bobdylan.*;

Is there anyway I can get a result similar to:

import boost.*;

(except in C++)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猛虎独行 2024-08-26 20:12:01

不会自动。您可以编写一个头文件,#includes 您感兴趣的所有其他头文件,然后只需 #include 即可,仅此而已 - C++ 没有像 java 那样的“导入”功能。

Not automatically. You can write a single header file that #includes all the other headers you are interested in, and then just #include that, but that's it - C++ has no "import" feature like java.

楠木可依 2024-08-26 20:12:01

您可能不想#include Boost 的所有内容——它是一个非常大的库,因此只需包含您需要的内容即可。

另外,Neil 说,C++ 中没有与 Java .* 语法等效的语法,因此您必须手动将它们全部包含在内,或者手动编写一个包含它们的单个标头并将其包含在内。

You probably don't want to #include all of Boost -- it's a very large library, so just include what you need.

Also, a Neil says, there is no equivalent in C++ to the Java .* syntax, so you must either include them all manually, or write a single header that includes them all manually and include that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文