boost::variant 可以与 std::string 一起使用吗?

发布于 2024-12-06 04:37:31 字数 945 浏览 1 评论 0原文

我使用 boost::variant 用 C++ 编写了一个简单的程序。程序的代码如下所示。

    #include <string>
    #include <iostream>
    #include <boost/variant.hpp>

    int main (int argc, char** argv)
    {
        boost::variant<int, std::wstring> v;
        v = 3;
        std::cout << v << std::endl;
        return 0;
    }

但是当我尝试用命令编译它时,

g++ main.cpp -o main -lboost_system

/usr/include/boost/variant/detail/variant_io.hpp:64: error: no match for ‘operator<<’ in ‘((const boost::detail::variant::printer<std::basic_ostream<char, std::char_traits<char> > >*)this)->boost::detail::variant::printer<std::basic_ostream<char, std::char_traits<char> > >::out_ << operand’

后面跟着一堆候选函数。

我缺少什么?有趣的是,当我使用 std::string 而不是 std::wstring 时,一切都很好。

提前致谢。

I've written a simple program in C++ with use of boost::variant. Program's code is presented below.

    #include <string>
    #include <iostream>
    #include <boost/variant.hpp>

    int main (int argc, char** argv)
    {
        boost::variant<int, std::wstring> v;
        v = 3;
        std::cout << v << std::endl;
        return 0;
    }

But when I try to compile this with command

g++ main.cpp -o main -lboost_system

i get

/usr/include/boost/variant/detail/variant_io.hpp:64: error: no match for ‘operator<<’ in ‘((const boost::detail::variant::printer<std::basic_ostream<char, std::char_traits<char> > >*)this)->boost::detail::variant::printer<std::basic_ostream<char, std::char_traits<char> > >::out_ << operand’

followed by a bunch of candidate functions.

What I'm missing? The funny thing is When I use std::string instead of std::wstring everything works great.

Thanks in advance.

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

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

发布评论

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

评论(2

雨的味道风的声音 2024-12-13 04:37:31

问题是 wstring 不能是 cout 中的 <<。尝试使用 wcout 代替。这不是变体的问题。

The problem is that wstring cannot be << in cout. Try using wcout instead. This is not a problem with the variant.

橘味果▽酱 2024-12-13 04:37:31

使用wcout,而不是cout。因为您使用的是 wstring,而不是 string

std::wcout <<  v << std::endl;
   //^^^^ note

演示:http://ideone.com/ynf15

Use wcout, not cout. Because you're using wstring, not string.

std::wcout <<  v << std::endl;
   //^^^^ note

Demo : http://ideone.com/ynf15

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