本文介绍了为什么typeid返回的int和const int是相同的类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

if(typeid(int) == typeid(const int))
       cout << "Same types"<< endl;

程序输出:

我错过了什么吗?这些不是相同类型的大声笑.

am I missing something?these are not same types lol.

推荐答案

它们不是同一类型,但是typeid运算符会除去constvolatile.

They aren't the same type, but the typeid operator strips const and volatile.

来自5.2.8 [expr.typeid]节:

这篇关于为什么typeid返回的int和const int是相同的类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 13:38