Tagged Questions
The typeid tag has no wiki summary.
32
votes
3answers
569 views
Weird use of `?:` in `typeid` code
In one of the projects I'm working on, I'm seeing this code
struct Base {
virtual ~Base() { }
};
struct ClassX {
bool isHoldingDerivedObj() const {
return typeid(1 ? *m_basePtr : *m_basePtr) ...
18
votes
2answers
182 views
Is there a portable wrapper for C++ type_info that standardizes type name string format?
The format of the output of type_info::name() is implementation specific.
namespace N { struct A; }
const N::A *a;
typeid(a).name(); // returns e.g. "const struct N::A" but compiler-specific
...
17
votes
6answers
395 views
When is using 'typeid' the best solution?
There are many reasons not to use typeid. Other than for using members of type_info (implementation defined behavior), it is usually (always?) possible to provide similar functionality using other ...
15
votes
1answer
264 views
dereferencing a null pointer within typeid
While researching a recent question, I came upon the following clause in the '03 standard[1]:
When typeid is applied to an lvalue
expression whose type is a polymorphic
class type (10.3), the ...
11
votes
4answers
239 views
Using RTTI to determine inheritance graph in C++?
What, if any, c++ constructs are there for listing the ancestors of a class at runtime?
Basically, I have a class which stores a pointer to any object, including possibly a primitive type (somewhat ...
8
votes
3answers
243 views
Numeric unique identifier of a class via typeid
The typeid operator in C++ returns an object of class std::type_info which can yield its textual name. However, I'm just interested in getting an unique numeric identifier for any polymorphic class. ...
6
votes
2answers
238 views
C++: Using typeid in production code
Is it generally considered bad practice to use typeid in production code? Also, I noticed typeid returns type_info, which includes some metadata (such as a string with the type's name); is there a way ...
6
votes
2answers
173 views
Puzzle: To escape the check of typeid
I formed a nice interview question by chance. :)
template<typename T>
bool foo (T obj)
{
if(typeid(T) == typeid(obj))
return false;
return true; // <-- execute this
}
You have to ...
6
votes
4answers
159 views
Will multiple calls to typeid(T).name() return the same pointer?
In C++ I can use typeid operator to retrieve the name of any polymorphic class:
const char* name = typeid( CMyClass ).name();
The string pointed to by the returned const char* will be available to ...
6
votes
5answers
1k views
C++: type_info to distinguish types
I know that compilers have much freedom in implementing std::type_info functions' behavior.
I'm thinking about using it to compare object types, so I'd like to be sure that:
std::type_info::name ...
6
votes
3answers
4k views
typeid() returns extra characters in g++
class foo
{
public:
void say_type_name()
{
std::cout << typeid(this).name() << std::endl;
}
};
int main()
{
foo f;;
f.say_type_name();
}
Above code prints P3foo on my ...
5
votes
1answer
125 views
Memory leaks after using typeinfo::name()
I have a program in which, partly for informational logging, I output the names of some classes as they are used (specifically I add an entry to a log saying along the lines of Messages::CSomeClass ...
5
votes
1answer
201 views
typeid for polymorphic types
I expected this code to print 'Same 1' and 'Same2', but it prints only 'Same1':
#include <iostream>
#include <typeinfo>
using namespace std;
struct C{virtual ~C(){}};
struct D : C{};
int ...
5
votes
8answers
2k views
Is it possible to get a char* name from a template type in C++
I want to get the string name (const char*) of a template type. Unfortunately I don't have access to RTTI.
template< typename T >
struct SomeClass
{
const char* GetClassName() const { ...
4
votes
1answer
241 views
C++ type id at compile time
I want to generate a hash for a class based on its derived type at compile time. Today I generate it like:
template<class Type>
class TypeBase
{
public:
static const unsigned s_kID;
};
...
4
votes
1answer
97 views
What is the Scala equivalent of C++ typeid?
For example, if I do
scala> val a = Set(1,2,3)
a: scala.collection.immutable.Set[Int] = Set(1, 2, 3)
in the REPL, I want to see the most refined type of "a" in order to know whether it's really ...
4
votes
1answer
278 views
dynamic_cast issues: typeid object is not equal, but name is equal
I found that dynamic_cast didn't work in a situation where I expected it to, and looking at the typeid of the objects at runtime has made the situation even less clear. I just want a cast from base to ...
4
votes
3answers
711 views
Is typeid of type name always evaluated at compile time in c++?
I wanted to check that typeid is evaluated at compile time when used with a type name (ie typeid(int), typeid(std::string)...).
To do so, I repeated in a loop the comparison of two typeid calls, and ...
4
votes
2answers
171 views
What's the lifetime of memory pointed to typeinfo::name()?
In C++ I can use typeid operator to retrieve the name of any polymorphic class:
const char* name = typeid( CMyClass ).name();
How long will the string pointed to by the returned const char* pointer ...
4
votes
4answers
6k views
typeid and typeof in C++
I just wonder what's the difference between typeid and typeof in C++?
typeid is defined in standard C++ Library Header File typeinfo.
typeof is defined in the GCC extension for C or in C++ Boost ...
4
votes
2answers
1k views
Test whether a class is polymorphic
We have a sub-project 'commonUtils' that has many generic code-snippets used across the parent project.
One such interesting stuff i saw was :-
...
3
votes
2answers
71 views
why typeid returns that int and const int are same types
if(typeid(int) == typeid(const int))
cout << "Same types"<< endl;
PROGRAM OUTPUT:
Same types
am I missing something?
these are not same types lol.
3
votes
1answer
38 views
Should the TypeIds of two attributes which are semantically identical be different or the same?
MSDN states of the property TypeId that:
As implemented, this identifier is merely the Type of the attribute. However, it is intended that the unique identifier be used to identify two attributes ...
3
votes
3answers
105 views
What's the lifetime of the object returned by typeid operator?
If I call typeid and retrieve the address of returned type_info:
const type_info* info = &( typeid( Something ) );
what's the lifetime of the object returned by typeid and how long will the ...
3
votes
3answers
126 views
Programatically getting the name of a derived class
I am attempting to do something like:
class Base {
public:
Base() {
cout << typeid(*this).name() << endl;
}
...
};
class Derived : public Base { ... }
class MoreDerived : ...
3
votes
2answers
143 views
strange behaviour of typeid
Using XCode 3.2.3 ( 64-bit ), I get following strange output. Where am I going wrong ?
#include <iostream>
#include <typeinfo>
struct student {
};
int main()
{
int i;
...
3
votes
4answers
460 views
How does typeid work and how do objects store class information?
http://en.wikipedia.org/wiki/Typeid
This seems to be a mystery to me: how does a compiler stores information about the type of an object ? Basically an empty class, once instantiated, has not a zero ...
3
votes
2answers
270 views
typeid operator in C++
I have the following code
int main()
{
cout << "Please enter your name..." << endl;
cin >> name;
cout << "Data type = " << typeid(name).name() << endl;
...
3
votes
3answers
312 views
Pointer to the start of an object (C++)
I need a way to get a pointer to the start of an object in C++. This object is used inside a template so it can be any type (polymorphic or not) and could potentially be an object that uses multiple ...
2
votes
2answers
108 views
recursive variadic template to print out the contents of a parameter pack
How is it possible to create a recursive variadic template to print out the contents of a paramater pack?
I am trying with this, but it fails to compile:
template <typename First, typename ...
2
votes
4answers
398 views
TypeID for derived classes of a common base class
I'm attempting to implement some mechanism in C++ whereby all classes derived from a common base class are assigned a unique "class ID". For example:
class BaseClass
{
//...
public: ...
2
votes
4answers
213 views
Wildcards in typeid
There is a section of code in a library I use that looks like this:
...
if ( ptype == typeid( Vector< T, 4 > ) )
{
This->SetNumberOfComponents(4);
}
else if ( ...
2
votes
3answers
163 views
typeid result across different dll's
I have two dlls which both declare a templated type, let's call A.
If the declaration of A is sufficiently intricate, it happens that
the result of typeid(A).name() is different when called in ...
2
votes
2answers
632 views
When can typeid return different type_info instances for same type?
Andrei Alexandrescu writes in Modern C++ Design:
The objects returned by typeid have
static storage, so you don't have to
worry about lifetime issues.
Andrei continues:
The standard does ...
2
votes
8answers
19k views
How to typeof in C++
How to simulate C# typeof-command behavior in C++?
C# example:
public static PluginNodeList GetPlugins (Type type)
{
...
}
Call:
PluginManager.GetPlugins (typeof(IPlugin))
How to implement ...
1
vote
2answers
86 views
How does compiler evaluate `typeid` operator?
Here is some CRTP based template code that I used to try and resolve this question: Requiring overridden virtual functions to call base implementations. I would post code here, but the lines are long ...
1
vote
1answer
66 views
Will equal type_info addresses mean equal types?
I'm micro-optimizing code for identifying object types. I assume I can use the following for checking whether two objects instantiated in the same module have identical types:
SomeCommonBase& ...
1
vote
2answers
103 views
Can type_info pointers be used to distingush types in C++?
I have a set of polymorphic C++ classes and they are all instantiated by the same module (Windows DLL). Now having two pointers to such classes and having called typeid:
SomeCommonBase* first = ...; ...
1
vote
6answers
141 views
C++ Determine the type of a variable and use it within sizeof()
I would like to write a macro in c++ which would give the value 0 to every element of a table. For instance, having declared i thus: int i[10];, the macro fill_with_zeros(i) would produce this effect: ...
1
vote
1answer
155 views
how to create a container that takes one object of each kind?
I tried to create a container for posible metadata that can be attached to my objects. I can guarantee that there will be at most one object af each kind attached to my class but there is no limit for ...
1
vote
2answers
139 views
Can I tell if a std::type_info object is equal to another OR a class derived from that other?
I have a Factory that has shops that work on unrelated things. Some shops work or personal autos and classes derived from there ( cars, SUVs, mopeds ) and others work on military vehicles and classes ...
1
vote
3answers
216 views
typeid doesn't return correct type
cout << typeid(int&).name();
This, in my opinion, should return int& as a type, not an int, but on GCC 4.5.1 and on VS2010 SP1 beta it returns int. Why is this?
1
vote
1answer
168 views
2d STL vector typeid
I have various 2D vectors and I want to query their differing types at runtime.
It appears this is possible on an "empty" vector, e.g.:
vector<vector<float> > myVec;
cout << ...
1
vote
2answers
462 views
C++ : Mixing : boost::any + typeid + pointer : clone 'generic' value if it is a pointer
Here is what I would like to do:
From a boost::any I would like to know it is a pointer type.
If it is a pointer, I have to clone it
Something like this :
boost::any value= new ...
1
vote
2answers
348 views
Why switch expressions of type 'System::Guid' are illegal?
void Foo(Type^ type)
{
System::Guid id = type->GUID;
switch (id)
{
case System::Byte::typeid->GUID:
...
break;
...
}
Obviously case expressions are not constant. But I'd ...
1
vote
1answer
817 views
typeid , dynamic casting (upcast) and templates
I have few questions regarding dynamic casting , typeid() and templates
1) How come typeid does not require RTTI ?
2) dynamic_cast on polymorphic type:
When I do downcast (Base to Derive) with ...
1
vote
2answers
704 views
Get type of variable
If I understand correctly, typeid can determine the actual type in polymorphism, while typeof cannot.
Is it also true that their returns are used for different purposes: the return of typeof is used ...
1
vote
6answers
215 views
Forward declaration and typeid
I would like to check the type of a superclass A against the type of a subclass B (with a method inside the superclass A, so that B will inherit it).
Here's what I thought did the trick (that is, the ...
0
votes
1answer
54 views
set different layout for different product type in magento?
How can we set different layout for different product according to product type?
I want to show Virtual and Bundle product in different layout, simple and grouped will show in differ layout.
Thanks
0
votes
2answers
284 views
Using typeid for simple decisions
My question concerns simple catching of casting problems at runtime in C++. I understand that C++ provides no 'RTTI' under most circumstances (let's just say I can't change my compiler settings and ...