我有以下代码:
std::vector<std::string> GetSameID(std::vector<string>& allFiles, int id) {
std::vector<std::string> returnVector;
for(std::vector<string>::iterator it = allFiles.begin(); it != allFiles.end(); ++it) {
if(GetID(*it) == id) {
int index = (*it).find("_CH2.raw");
if(index > 0) {
continue; //this works
}
if(0 < ((*it).find("_CH2.raw"))) {
continue; //this doesn't
}
string ext = PathFindExtension((*it).c_str());
if(ext == ".raw") {
returnVector.push_back(*it);
}
}
}
return returnVector;
}
我的问题是,为什么if(0 < ((*it).find("_CH2.raw")))
不能那样工作?我的文件名为 ID_0_X_0_Y_128_CH1.raw ID_0_X_0_Y_128_CH2.raw(示波器上的通道 1 和通道 2 的 ID 不同,X 和 Y)。
当我这样做很长一段时间(分配索引,然后检查索引)时,它可以工作,但我不明白为什么更易读的 imo 短版本不起作用。