错误信息:cannot call member function ‘ ‘ without object 解决方法
一、源码展示
std::vectorstd::string split()函数报错:cannot call member function ’ ’ without object,如果直接引用没有对象,因为这里面的其他函数都是static,是写在头文件中的,没有实际的object,所以必须也要定义成static。
正是因为都放在头文件中实现,所以要定义成static。
static std::string extract(std::string &values, int index, char delim) {
if (values.length() == 0) return std::string("");
std::vector<std::string> x = split(values, delim);
if (index > x.size()) {
throw "Error:Out-of-range index";
}
return x.at(index);
}
static void _split(const std::string &s, char delim,
std::vector<std::string> &elems) {
std::stringstream ss(s);
std::string item;
while (std::getline(ss, item, delim)) {
elems.push_back(item);
}
}
std::vector<std::string> split(const std::string &s, char delim) {
std::vector<std::string> elems;
_split(s, delim, elems);
return elems;
}
提示:这里对文章进行总结:
如果是在头文件中实现的函数需要定义成static,因为没有实际对象,所以作为全局函数使用,如果少加static,就会出现报错cannot call member function ’ ’ without object ,相应处理为+static或者定义一个对象如果是在源文件中。
std::vectorstd::string split()函数报错:cannot call member function ’ ’ without object,如果直接引用没有对象,因为这里面的其他函数都是static,是写在头文件中的,没有实际的object,所以必须也要定义成static。
正是因为都放在头文件中实现,所以要定义成static。
static std::string extract(std::string &values, int index, char delim) {
if (values.length() == 0) return std::string("");
std::vector<std::string> x = split(values, delim);
if (index > x.size()) {
throw "Error:Out-of-range index";
}
return x.at(index);
}
static void _split(const std::string &s, char delim,
std::vector<std::string> &elems) {
std::stringstream ss(s);
std::string item;
while (std::getline(ss, item, delim)) {
elems.push_back(item);
}
}
std::vector<std::string> split(const std::string &s, char delim) {
std::vector<std::string> elems;
_split(s, delim, elems);
return elems;
}
提示:这里对文章进行总结:
如果是在头文件中实现的函数需要定义成static,因为没有实际对象,所以作为全局函数使用,如果少加static,就会出现报错cannot call member function ’ ’ without object ,相应处理为+static或者定义一个对象如果是在源文件中。