スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2873: 'std': シンボルを using 宣言の中で使用することはできません。
ソース(バグ有り):
#include <iostream> #include <string> using std; |
ソース(修正済み):
#include <iostream> #include <string> using namespace std; |
スポンサード リンク