我做了我的Hello World!程序在Visual Studio 2010 C++中,它確實工作正常(除非如果我輸入2次它將關閉,這是正常的?)Cannote找到PDB Visual Studio 2010
但有一點「錯誤信息」或任何出現在調試日誌中:
'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
這是什麼意思?
你可以在這裏看到我的代碼:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
cin.clear();
cin.ignore(255, '\n');
cin.get();
return 0;
}
謝謝!
尼科
好的,謝謝 但是......我該怎麼做......? – Bulbuzor 2010-07-26 18:50:03
安德烈亞斯的鏈接(Microsoft Symbol Server)是你需要得到ntdll.dll pdb – Ando 2010-07-26 18:53:42