あなたがC++プログラミングでそのように好むなら、私は初心者または初心者です.グローバル名前空間を汚染するので、それをstd::
入れるよりも良い習慣だと誰かが私に言ったので、私は使用しようとしています. 以下のコードからエラーが発生するusing namespace std;
理由はわかりませんが、完全なソースコードです。std::cin >> name;
no operator '>>' matches these operands
#include "stdafx.h"
#include <ios>
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
int x, y;
std::string name;
std::cin >> name;
std::cin >> x;
return 0;
}