Eclipse C ++ Linux“to_string未在此范围内声明”

时间:2014-02-04 20:16:27

标签: c++ scope eclipse-cdt

#include "Person.h"
#include <string>

using namespace std;

string Person::toSimpleString(){

     return getFirstName() + " " + getLastName() + ", Age " + to_string(5);
}

我的所有字符串都工作正常,但我无法使用to_string函数。 Eclipse一直告诉我它超出了范围。 WHT

1 个答案:

答案 0 :(得分:-2)

#include <string>需要#include <string.h>吗?

我想你可能会错过“.h”