请告诉我,string这个类是在哪个库文件里呢?
还有:
string inbuff,where;
int wh;
wh=atoi(where.c_str());这句又是什么意思呢?
string在string中....
既
#include <string>
using namespace std;
------------------------------
string inbuff,where;
int wh;
wh=atoi(where.c_str());
where.c_str()
把string对象where强制转换成char型
wh = atoi(...)
再把char型强制转换成int型赋值给wh