使用字符串时的过程入口点错误

时间:2017-04-19 21:48:13

标签: c++ codeblocks

我刚刚下载了Code :: Blocks供c ++使用,我收到此代码的错误:

#include <windows.h>
#include <iostream>

using namespace std;

int main()
{
    string name;
    cin >> name;
    cout << "hello, " << name << "\n";
    system("pause");
}

错误说:

  

无法在动态链接库(路径)中找到过程入口点_ZNSt7_cxx1112basic_stringlcSt11char_traitslcESalcEEC1Ev

所有内容都完美编译,并且它在IDE中正常运行,但在运行可执行文件时,它会给我错误。我正在使用mingw编译器。任何帮助表示赞赏!

0 个答案:

没有答案