所以我写了一个使用 auto 的程序,但是编译器似乎无法识别它,可能它是一个早期的编译器。
我想知道我的代码,什么是合适的变量来修复我的代码,这样我就不需要使用 auto 关键字?我在想一个指向字符串的指针?或字符串迭代器,尽管我不确定。
#include <cstdlib>
#include <string>
#include <iostream>
#include <unistd.h>
#include <algorithm>
using namespace std;
int main(int argc, char* argv[]) {
enum MODE {
WHOLE, PREFIX, SUFFIX, ANYWHERE, EMBEDDED
} mode = WHOLE;
bool reverse_match = false;
int c;
while ((c = getopt(argc, argv, ":wpsaev")) != -1) {
switch (c) {
case 'w': // pattern matches whole word
mode = WHOLE;
break;
case 'p': // pattern matches prefix
mode = PREFIX;
break;
case 'a': // pattern matches anywhere
mode = ANYWHERE;
break;
case 's': // pattern matches suffix
mode = SUFFIX;
break;
case 'e': // pattern matches anywhere
mode = EMBEDDED;
break;
case 'v': // reverse sense of match
reverse_match = true;
break;
}
}
argc -= optind;
argv += optind;
string pattern = argv[0];
string word;
int matches = 0;
while (cin >> word) {
switch (mode) {
case WHOLE:
if (reverse_match) {
if (pattern != word) {
matches += 1;
cout << word << endl;
}
} else if (pattern == word) {
matches += 1;
cout << word << endl;
}
break;
case PREFIX:
if (pattern.size() <= word.size()) {
auto res = mismatch(pattern.begin(), pattern.end(), word.begin());
if (reverse_match) {
if (res.first != word.end()) {
matches += 1;
cout << word << endl;
}
} else if (res.first == word.end()) {
matches += 1;
cout << word << endl;
}
}
break;
case ANYWHERE:
if (reverse_match) {
if (!word.find(pattern) != string::npos) {
matches += 1;
cout << word << endl;
}
} else if (word.find(pattern) != string::npos) {
matches += 1;
cout << word << endl;
}
break;
case SUFFIX:
if (pattern.size() <= word.size()) {
auto res = mismatch(pattern.rbegin(), pattern.rend(), word.rbegin());
if (reverse_match) {
if (res.first != word.rend()) {
matches = +1;
cout << word << endl;
}
} else if (res.first == word.rend()) {
matches = +1;
cout << word << endl;
}
}
break;
case EMBEDDED:
if (reverse_match) {
if (!pattern.find(word) != string::npos) {
matches += 1;
cout << word << endl;}
} else if (pattern.find(word) != string::npos) {
matches += 1;
cout
<< word << endl;
}
break;
}
}
return (matches == 0) ? 1 : 0;
}
提前致谢!
我得到的错误:
main.cpp:70:26: error: 'res' does not name a type
main.cpp:73:29: error: 'res' was not declared in this scope
main.cpp:77:32: error: 'res' was not declared in this scope
main.cpp:97:26: error: 'res' does not name a type
main.cpp:100:29: error: 'res' was not declared in this scope
main.cpp:104:32: error: 'res' was not declared in this scope