c++ 中的前向声明

发布于 2024-09-14 11:43:35 字数 340 浏览 7 评论 0原文

我想转发声明:

namespace boost {
    namespace property_tree {
        template<typename Key, typename Data, typename KeyCompare = std::less<Key> >
        class basic_ptree;
        typedef basic_ptree< std::string, std::string > ptree;
    }
}

但我的 g++ cribs 关于由于默认模板参数而重新定义。我怎样才能实现这个目标?

I want to forward declare:

namespace boost {
    namespace property_tree {
        template<typename Key, typename Data, typename KeyCompare = std::less<Key> >
        class basic_ptree;
        typedef basic_ptree< std::string, std::string > ptree;
    }
}

but my g++ cribs about redefinition due to default template argument. How can I achieve this?

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

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

发布评论

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

评论(1

梦在夏天 2024-09-21 11:43:35

要前向声明 property_tree,您应该包含

#include <boost/property_tree/ptree_fwd.hpp>

标头,而不是自己声明。

To forward-declare the property_tree, you should include the

#include <boost/property_tree/ptree_fwd.hpp>

header, instead of declaring one yourself.

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