Tagged Questions
10
votes
4answers
478 views
Why is std::type_info polymorphic?
Is there a reason why std::type_info is specified to be polymorphic? The destructor is specified to be virtual (and there's a comment to the effect of "so that it's polymorphic" in The Design and ...
6
votes
4answers
160 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
2answers
1k views
Why do I get “type has no typeinfo” error with an enum type
I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero):
type
TMyEnum = (
meFirstValue = 1,
...
4
votes
1answer
591 views
Will C++0x provide hashing functions for std::type_info?
I'm still working on a good solution to my One-Of-A-Type Container Problem -- and upon reflection I think it would be nice to be able to just use something like a std::map<std::type_info, ...
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 ...
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
4answers
2k views
String representation of the content type of a Variant?
first apologies for my english, I hope it make sense what I`ve wrote here. Now to my problem.
How can I get the string representation of the content type of a Variant using TypInfo.GetEnumName(). I ...
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
104 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
5answers
170 views
trying to count instances of deriving classes, type_id doesnt work
first of all i think its a crapy design , but im trying to prove a point.
i want to count all the instances of derivers from my class, im trying to do it like so:
.h file:
#ifndef _Parant
#define ...
1
vote
1answer
206 views
Enumerated types with specified values do not have TypeInfo, why?
Using Delphi 2007 I can write the following code:
interface
TTestType = (ttTest1, ttTest2);
procedure enumName;
var
EnumName: String;
begin
EnumName := GetEnumName(TypeInfo(TTestType), ...