gpt4 book ai didi

c++ - 将 std::to_wstring 与 libstdc++ 一起使用?

转载 作者:行者123 更新时间:2023-11-30 00:54:12 31 4
gpt4 key购买 nike

为什么这不能在 gcc 上编译?

#include <iostream>
#include <string>

int main() {

double f = 23.43;
std::wstring f_str = std::to_wstring(f);
std::wcout << f_str << std::endl;

return 0;
}

错误:

prog.cpp: In function ‘int main()’:

prog.cpp:6:26: error: ‘to_wstring’ is not a member of ‘std’

example

最佳答案

std::to_wstring()在 C++11 中添加。您在 ideone 上的答案中的链接使用 C++11 编译器:

language: C++ (gcc-4.7.2)

它编译得很好:http://ideone.com/UO2FQM :

language: C++0x (gcc-4.7.2)

关于c++ - 将 std::to_wstring 与 libstdc++ 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14647201/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com