gpt4 book ai didi

c++ - 使用 map 功能 ubuntu

转载 作者:行者123 更新时间:2023-11-30 03:06:11 25 4
gpt4 key购买 nike

我正在尝试在 ubuntu 中编译以下代码

#include <unordered_map.h>
typedef unsigned int key_type; // fine, has < , ==, and std::hash
typedef std::map<key_type, some_value_type> my_map;

使用这个命令

g++ -Wl,-Bsymbolic-functions -rdynamic -L/usr/lib/mysql -lmysqlclient -I/usr/include/mysql -DBIG_JOINS=1 -fno-strict-aliasing -DUNIV_LINUX -DUNIV_LINUX -I/usr/include/ -I/usr/include/c++/4.5/bits/ main.c -o program

我得到了这个错误

1234@(none:/usr/local/src/testing$ make
g++ -Wl,-Bsymbolic-functions -rdynamic -L/usr/lib/mysql -lmysqlclient -I/usr/include/mysql -DBIG_JOINS=1 -fno-strict-aliasing -DUNIV_LINUX -DUNIV_LINUX -I/usr/include/ -I/usr/include/c++/4.5/bits/ main.c -o program
In file included from main.c:5:0:
/usr/include/c++/4.5/bits/unordered_map.h:33:32: error: expected constructor, destructor, or type conversion before ‘(’ token
make: *** [all] Error 1

这是 map.h 的定位

1234@(none):/usr/local/src/testing$ 定位 map.h

/usr/include/c++/4.5/bits/STL_map.h

/usr/include/c++/4.5/bits/STL_multimap.h

/usr/include/c++/4.5/bits/unordered_map.h

/usr/include/c++/4.5/debug/map.h

/usr/include/c++/4.5/debug/multimap.h

/usr/include/c++/4.5/profile/map.h

/usr/include/c++/4.5/profile/multimap.h

/usr/include/c++/4.5/profile/impl/profiler_map_to_unordered_map.h

/usr/include/c++/4.5/tr1/unordered_map.h

此外,我还有其他用于 mysql 的 studd,我将使用它,但 main 仅返回 0;

最佳答案

如果您没有完全搞砸您的编译器设置,您应该不需要传递那么多选项。您应该可以删除 -I/usr/include/-I/usr/include/c++/4.5/bits/

g++ -Wl,-Bsymbolic-functions -rdynamic -L/usr/lib/mysql -lmysqlclient \
-I/usr/include/mysql -DBIG_JOINS=1 -fno-strict-aliasing \
-DUNIV_LINUX -DUNIV_LINUX main.c -o program

此外,由于您调整了包含路径,因此您能够看到不应直接包含的实现文件 unordered_map.h。而是包括

#include <unordered_map>
// for C++0x

#include <tr1/unordered_map>
// for C++98

通常,C++ 的“标准库”头文件名称中没有 .h。 C 库头文件有它(例如 math.h),但您会获得一个附加版本,其声明正确包装在标准命名空间中。这些 header 以 c 开头,例如cmath.

关于c++ - 使用 map 功能 ubuntu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6875683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com