gpt4 book ai didi

c++ - typeinfo name() 和 endl 在 Windows 和 mingw 中不能一起工作

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:24:49 26 4
gpt4 key购买 nike

当我在 Ubuntu(Ubuntu 13.10、64 位、g++ 4.8.1)中运行这个简单代码时:

#include <iostream>
#include <typeinfo>
#include <string>

using namespace std;

int main(void)
{
const type_info &ti_trait = typeid(char_traits<char>::char_type);

cout << "Traits character type name : " <<
ti_trait.name() << endl;

return 0;
}

一切正常,但在 Windows(Windows 8 64 位、mingw、g++ 4.8.1)中,我得到“程序已停止工作”(编译工作正常并且 -Wall 不产生警告)。

在 Visual Studio 中编译和执行的相同代码可以正常工作。

有什么想法吗?

最佳答案

解决方案是使用 -static-libgcc -static-libstdc++ ( see here for an explaination ) 进行编译。感谢@sftrabbit。

关于c++ - typeinfo name() 和 endl 在 Windows 和 mingw 中不能一起工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20934566/

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