我知道通过询问这个问题我听起来很像新手,但是我很想知道为什么在通过字符串上的 if 语句使用简单运算符时会出错?这是我为产生错误所做的事情:
void Shift (string updown )
{
if (updown == "hel")
{
//random code
}
}
我的包括:
#include <iostream>
#include <fstream>
#include <Windows.h>
using namespace std;