由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - typeid produces a reference to a static type_info
相关主题
这是另一个c++的bug么?求教一个Java问题 IllegalMonitorStateException
给大家出个多进程的题Re: 一道count frequency of all words的面试题 (转载)
一个JAVA程序请教Google Glass sales halted but firm says kit is not dead
java synchronized 问题现在082KAFKA支持produce数组吗
[合集] 这个问题怎么解效率最高有没有人用过org.json.JSONObject?
对pthread熟悉的XD请进来看看java producer consumer problem (转载)
请教一个concurrentlinkedqueue的用法问题Re: java producer consumer problem (转载)
请教pthread producer-consumer问题问大牛个java线程机器数的估算
相关话题的讨论汇总
话题: b2话题: typeid话题: type话题: static话题: b2p
进入Programming版参与讨论
1 (共1页)
n**d
发帖数: 9764
1
From "thinking in C++: "The typeid operator always produces a reference to a
static type_info object that describes the dynamic type of the object."
Why the following code output MI? Should it be Mi2? What does "static type_
info object" mean above?
*b2: 2MI
*mip: 2MI
*b1p: 2MI
mi2p not casted
#include
#include
#include
using namespace std;
class B2 {
public:
virtual ~B2() {}
};
class MI : public B2 {};
class Mi2 : public MI {};
void f(B2* &b2p)
{
delete b2p;
b2p
1 (共1页)
进入Programming版参与讨论
相关主题
问大牛个java线程机器数的估算[合集] 这个问题怎么解效率最高
Kafka consumer启动怎样不读之前的massage对pthread熟悉的XD请进来看看
Java EE 问题请教一个concurrentlinkedqueue的用法问题
如果能够保证kafka的broker不被flood?请教pthread producer-consumer问题
这是另一个c++的bug么?求教一个Java问题 IllegalMonitorStateException
给大家出个多进程的题Re: 一道count frequency of all words的面试题 (转载)
一个JAVA程序请教Google Glass sales halted but firm says kit is not dead
java synchronized 问题现在082KAFKA支持produce数组吗
相关话题的讨论汇总
话题: b2话题: typeid话题: type话题: static话题: b2p