我一直在寻找它,但我无法找到解决方案。对不起,这已经发布了。
我必须创建一个 stxxl::map 结构将 const char* 映射到 const char* (最佳方案是字符串到字符串,但我知道 stxxl 容器不接受非 POD)
我在为 const char* 定义 comp_type 结构时遇到问题。有没有人这样的例子?
这是我写的:
struct comp_type : public std::less<const char*>
{
static int max_value()
{
return (std::numeric_limits<char>::max)();
}
};