2010-01-18 2 views
5

Я пытаюсь использовать sgi hash_map.'hash_map' не был объявлен в этой области с g ++ 4.2.1

#include <list> 
#include <iostream> 
#include <string> 
#include <map> 
#include <cstring> 
#include <tr1/unordered_map> 
#include <ext/hash_map> 


using namespace std; 
struct eqstr 
{ 
    bool operator()(const char* s1, const char* s2) const 
    { 
    return strcmp(s1, s2) == 0; 
    } 
}; 


int main() 
{ 
    hash_map<const char*, int, hash<const char*>, eqstr> months; 

    months["january"] = 31; 
    months["february"] = 28; 
    months["march"] = 31; 
    months["april"] = 30; 
    months["may"] = 31; 
    months["june"] = 30; 
    months["july"] = 31; 
    months["august"] = 31; 
    months["september"] = 30; 
    months["october"] = 31; 
    months["november"] = 30; 
    months["december"] = 31; 

    cout << "september -> " << months["september"] << endl; 
    cout << "april  -> " << months["april"] << endl; 
    cout << "june  -> " << months["june"] << endl; 
    cout << "november -> " << months["november"] << endl; 
} 

на gcc4.2 Я получаю ошибку

listcheck.cc: In function 'int main()': 
listcheck.cc:22: error: 'hash_map' was not declared in this scope 
listcheck.cc:22: error: expected primary-expression before 'const' 
listcheck.cc:22: error: expected `;' before 'const' 
listcheck.cc:24: error: 'months' was not declared in this scope 

в то время как тот же самый код компилируется с 3.4.

ответ

5

Включенный файл <ext/hash_map> относится к классу хеш-карт GNU extension, и это объявлено в пространстве имен __gnu_cxx. Вы можете либо явно указать имя шаблона, либо добавить:

using namespace __gnu_cxx; 
8

Использование <unordered_map>. hash_map был расширением поставщика, замененным unordered_map.

0

использование пространства имен __gnu_cxx; удалена ошибка компиляции.

использованием

#include <hash_map> 

дает это предупреждение и удаление дает ошибку компиляции

In file included from /usr/include/c++/4.4/backward/hash_map:59, 
       from listcheck.cc:6: 
/usr/include/c++/4.4/backward/backward_warning.h:28:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. 

после удаления

#include <hash_map> 

g++ listcheck.cc 
listcheck.cc: In function ‘int main()’: 
listcheck.cc:20: error: ‘hash_map’ was not declared in this scope 
listcheck.cc:20: error: expected primary-expression before ‘const’ 
listcheck.cc:20: error: expected ‘;’ before ‘const’ 
listcheck.cc:21: error: ‘months’ was not declared in this scope 
Смежные вопросы