我在我的代码中发现了一个错误,我在对结构容器进行排序时忘记使用自定义比较器。这让我想知道它用作小于运算符是什么,因为我没有为结构定义任何内容。
当未定义这些运算符时,对象如何比较 <、> 和 ==?是通过内存地址吗?是否在标准中定义?我在 Google 上找不到任何此类信息。
编辑:
这是我正在使用的课程:
using namespace std;
typedef unsigned id;
class LogEntry {
id master_id;
string timestamp;
string category;
string message;
string str_rep;
public:
LogEntry(id id, string t, string c, string m) :
master_id(id), timestamp(t), category(c), message(m) {
}
string get_timestamp() const {
return timestamp;
}
string get_category() const {
return category;
}
string get_message() const {
return message;
}
string to_string() {
ostringstream ss;
ss << master_id << "|" << timestamp << "|" << category << "|"
<< message;
return ss.str();
}
id get_id() const {
return master_id;
}
};
编辑2:
我意识到我犯了一个愚蠢的错误。我正在存储一个指向对象的指针向量。因此,指针很可能通过地址进行比较。如果我没有存储指针,我认为它不会编译。
EDIT3:KerrekSB 在他的答案的评论中发布了一个相关的有趣链接:如何完全订购指针?