В настоящее время я программирую синтаксический анализатор NMEA на C ++, и мне было дано несколько предварительно объявленных функций. Я тестирую каждую функцию по мере продвижения, но я столкнулся с проблемой при программировании decomposeSentence
функция. Код для функции выглядит следующим образом:
NMEAPair decomposeSentence(const string & nmeaSentence) {
/* Extract each comma-separated value from the string, and place into an
* array. */
string newSentence = nmeaSentence;
vector<string> sep = split(newSentence, ',');
/* Extract the sentence type (e.g. GPGLL) from the vector, remove the "$",
* and remove from the vector. */
string sentenceType = sep[0];
sentenceType.erase(sentenceType.begin());
sep.erase(sep.begin());
/* Extract the part of the vector containing the checksum, and discard the
* checksum. Remove the part of the vector still containing the checksum,
* and replace this with the newly created value. */
string discardChecksum = sep.back();
discardChecksum = discardChecksum.substr(0, discardChecksum.find("*"));
sep.erase(sep.end());
sep.push_back(discardChecksum);
/* Combine the sentence type and the vector elements into a pair. */
NMEAPair decomposedSentence = make_pair(sentenceType, sep);
/* Return the decomposed sentence. */
return decomposedSentence;
}
Когда я пытаюсь запустить функцию в main()
, вот так…
int main() {
const string nmeaSentence = "$GPGGA,091138.000,5320.4819,N,00136.3714,W,1,0,,395.0,M,,M,,*46";
NMEAPair decomposedSentence = decomposeSentence(nmeaSentence);
}
… компилятор выдает ошибку call of overloaded 'decomposeSentence(const string&)' is ambiguous'
,
Я понимаю, что это, вероятно, очень простая проблема для устранения, но я был бы признателен, если бы кто-нибудь мог помочь мне решить ее.
Редактировать: полное сообщение об ошибке
../gps/src/main.cpp:52:65: error: call of overloaded ‘decomposeSentence(const string&)’ is ambiguous
NMEAPair decomposedSentence = decomposeSentence(nmeaSentence);
^
../gps/src/main.cpp:23:10: note: candidate: GPS::NMEAPair decomposeSentence(const string&)
NMEAPair decomposeSentence(const string & nmeaSentence) {
^~~~~~~~~~~~~~~~~
In file included from ../gps/src/main.cpp:1:0:
../gps/headers/parseNMEA.h:47:12: note: candidate: GPS::NMEAPair GPS::decomposeSentence(const string&)
NMEAPair decomposeSentence(const string & nmeaSentence);
^~~~~~~~~~~~~~~~~
make: *** [Makefile:721: main.o] Error 1
04:00:01: The process "/usr/bin/make" exited with code 2.
Error while building/deploying project GPS (kit: Desktop)
Похоже, у вас есть using namespace GPS;
где-то в вашем коде. Из-за этого, GPS::decomposeSentence
и глобальный decomposeSentence
выбираются компилятором как потенциальные перегрузки.
Вы можете решить проблему следующим образом:
using namespace GPS;
линия илиnamespace
и используя его явно из этого namespace
,namespace ThisFileNS
{
NMEAPair decomposeSentence(const string & nmeaSentence)
{
...
}
}
и использовать
NMEAPair decomposedSentence = ThisFileNS::decomposeSentence(nmeaSentence);
в main
,
Других решений пока нет …