我是c ++的新手,
链接here 中的
它说
比较类型的顺序 [...] 此特定于实现的顺序不一定与大小有关, 继承关系或声明顺序,可能有所不同 程序
我不明白“类型顺序”的含义,作者用基本类型char和int
显示了一个例子#include <iostream> // std::cout
#include <typeinfo> // operator typeid
int main() {
if ( typeid(int).before(typeid(char)) )
std::cout << "int goes before char in this implementation.\n";
else
std::cout << "char goes before int in this implementation.\n";
return 0;
}
B.Lu