- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
namespace std {
class type_info
{
public:
virtual ~type_info(); //type_info can serve as a base class
// enable comparison
bool operator==(const type_info& rhs ) const;
// return !( *this == rhs)
bool operator!=(const type_info& rhs ) const;
bool before(const type_info& rhs ) const; // ordering
//return a C-string containing the type's name
const char* name() const;
private:
//objects of this type cannot be copied
type_info(const type_info& rhs );
type_info& operator=(const type_info& rhs);
}; //type_info
}
在 type_info 类的声明中,我找不到任何数据成员。那么构造或析构的是什么??里面也没有声明typeid,那么type_info对象是怎么访问的呢?
以上表示不完整? 请说出type_info
类中数据成员的类型
最佳答案
看起来您正在查看 C++03 中 typeinfo
的公共(public)接口(interface)。该标准不限制实现将成员添加到标准类(只要名称来自为实现保留的那些名称)以使事情正常进行。
我目前使用的std::typeinfo
实现中有一个private成员const char* __name
,用于根据需求实现public成员函数的标准。
ISO/IEC 14882:2011 17.5.2.3 私有(private)成员 [objects.within.classes]/1:
Clauses 18 through 30 and Annex D do not specify the representation of classes, and intentionally omit specification of class members (9.2). An implementation may define static or non-static class members, or both, as needed to implement the semantics of the member functions specified in Clauses 18 through 30 and Annex D.
类似的措辞出现在C++03 17.3.2.3中。
关于c++ - typeid 和 type_info 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9248421/
我正在制作一个 C++ 库,它严重依赖 RTTI(可自定义桥接至另一种语言)并且对字符串文字类型非常困惑。 这是我为说明问题所做的一个简单测试: std::cout direct-initializ
我正在使用关联列表来关联 TypeId事件类型的 s 和 TypeId谁想要接收它们。 当我尝试获取 TypeId 时的 Rc , 它给你相同的 TypeId (Rc 中的一个存储了一个 Any )不
答:总之使用虚函数!因此,实际上不要将其用作好的设计,但出于学习目的请阅读! 我想先说我正在使用 C++ 和 Qt我有一个形状指针 vector (基类) 编辑:doSomething() 不是基类的
我正在阅读C++ 11草案标准,关于[expr.typeid]的部分提到了以下内容(强调我的意思): [...] When typeid is applied to an expression oth
使用 gcc 4.9 我发现用字面量为复数生成的类型与通过常规方法创建的类型不同,即: typeid(complex(0.0,1.0)) != typeid(1.0i) 我在这里犯错了吗? 这是编译器
使用 gcc 4.9 我发现使用类型文字生成的复数类型与通过常规方式创建的类型不同,即: typeid(complex(0.0,1.0)) != typeid(1.0i) 我在这里犯错了吗? 这是编译
我正在观看以下 video 这里提到g++对于以下代码会报错: #include #include #include struct S { std::vector b ; }; int mai
我不想使用函数重载来对函数进行小的更改。相反,我想使用typeid()检查下面的模板化函数的传递参数。但是,如果我没有在下面的代码中注释掉该行,则会产生以下编译错误: Severity Code
示例代码: MainWindow::MainWindow(QWidget *parent) { QString strTemp = typeid(this).name();
我有以下代码: #include class Bobo {public: int member; void function() { auto lambda
根据标准,typeid 运算符是依赖于实现的,因此在由不同编译器编译的其他进程创建的对象上使用它是无稽之谈。但是提供进程被同一个编译器编译是什么情况呢? 最佳答案 它可能不会工作,因为外部对象将在它自
class A { protected: int a; public: A(); A(int); virtual void print()=0; virtual
我正在开发实体组件系统,我希望能够使用此方法从实体中检索给定类型的组件: template T* Entity::getComponent() { for( auto i = mCompon
我得到一个有两个基类指针的函数,根据子类,应该调用其他函数...... 像这样: void function(A* a, A* a2){ if (typeid(*a).name() =
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Printing derived class name in base class 我正在使用 GCC,下面
constructor 定义中的print 语句没有打印出来,是不是main 中的constructor 调用正确?我知道我在这里遗漏了一些要点,请指出。 #include #include te
我想知道 typeid 是否是一个“足够硬”的类型安全标准,可以放弃所有通常的预防措施。具体来说,请考虑以下代码片段: class storage { private: std::map ob
我在我的代码中使用了 typeid,但在我看来,如果我避免使用 typeid,代码会更清晰。 如果我们要存储类的类型,为什么我们首先要选择面向对象的语言呢? 但我一遍又一遍地看到这种模式,我不知道如何
我有以下使用 3 个不同映射的类:键始终是字符串,而值可以是字符串、整数或 float 。 class MyMaps { public: template void addKey(const
我想要一个 constexpr 函数,它将为每个 C++ 类型返回一个唯一的 id,如下所示: using typeid_t = uintptr_t; template constexpr type
我是一名优秀的程序员,十分优秀!