如何包含所有boost头文件?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会自动。您可以编写一个头文件,#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.
您可能不想#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.