- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码工作正常并打印"is":
#include <iostream>
using std::cout;
using std::endl;
class A {
public:
virtual void talk() { cout << "person talking" << endl;}
};
class B : public A {
public:
void work() { cout << "employee working" << endl; }
};
int main() {
A* pA = new B();
if (typeid(*pA) == typeid(B))
cout << "yes" << endl; // this is printed
else
cout << "no" << endl;
}
但如果我删除 virtual 关键字,它将打印“否”
#include <iostream>
using std::cout;
using std::endl;
class A {
public:
void talk() { cout << "person talking" << endl;}
};
class B : public A {
public:
void work() { cout << "employee working" << endl; }
};
int main() {
A* pA = new B();
if (typeid(*pA) == typeid(B))
cout << "yes" << endl;
else
cout << "no" << endl; // this is printed
}
为什么会这样?
((B*)(pA))->work(); // works fine, prints "employee working"
那么为什么 *pA 只被认为是 A 类对象(当没有 virtual 关键字时)但仍然可以调用 child 的 work() 方法?
最佳答案
就是这样typeid
作品。没有虚拟成员的类是非多态类型并且不携带运行时类型信息。因此无法在运行时确定它的类型。
见 [expr.typeid]/p2 :
When
typeid
is applied to a glvalue expression whose type is a polymorphic class type, the result refers to astd::type_info
object representing the type of the most derived object (that is, the dynamic type) to which the glvalue refers.
When
typeid
is applied to an expression other than a glvalue of a polymorphic class type, the result refers to astd::type_info
object representing the static type of the expression.
A*
,因此是
A
)。
关于c++ - 虚拟成员函数更改 typeid 的结果 - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63754477/
我正在制作一个 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
我是一名优秀的程序员,十分优秀!