Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
183 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 ...
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
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
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, ...
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 ...
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
576 views

C++ template name pretty print

I have need to print indented template names for debugging purposes. For example, instead of single-line, I would like to indent name like this: boost::phoenix::actor< ...
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 ...
3
votes
3answers
1k views

How to know what type is a var?

TypeInfo(Type) returns the info about the specified type, is there any way to know the typeinfo of a var? var S: string; Instance: IObjectType; Obj: TDBGrid; Info: PTypeInfo; begin Info:= ...
2
votes
3answers
158 views

Getting type names at compile time in C++

I want to get the type name and print it for debug purposes. I use the following code: #include <cxxabi.h> inline const char* demangle(const char *s) { abi::__cxa_demangle(s, 0, 0, NULL); ...
2
votes
2answers
172 views

typeinfo cause a segmentation fault

I hava a segmentation fault. debug with gdb, the first frame in the stack is in the typeinfo for MyClass() does someone know something about the typeinfo ?
2
votes
3answers
123 views

Storing Datatype Information

Let's say I have a few variables of different types. int MyInteger; double MyDouble; char MyChar; Pointers to these variables are stored in a single array of void pointers. void* IntegerPointer = ...
2
votes
1answer
223 views

Get TypeInfo in static constructor

Is there any way to get the equivalent of GetType within a static constructor? I want to iterate through the available properties of the type within the static constructor but GetType is an instance ...
1
vote
0answers
45 views

In GCC, how can I export all typeinfo symbols for a shared library without exporting all symbols?

Here is the problem: I have a shared library that is hiding symbols by default. Actually, it uses the -Xlinker --version-script= option to export some symbols in a specific file but hide all the ...
1
vote
1answer
67 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
2answers
109 views

Getting type of an object

I'm trying to do something along these lines: int var = 5; std::numeric_limits<typeid(var)>::max(); but surprise, surprise it doesn't work. How can I fix this? Thanks.
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), ...
1
vote
2answers
519 views

g++ linker error--typeinfo, but not vtable

I know the standard answer for a linker error about missing typeinfo usually also involves vtable and some virtual function that I forgot to actually define. I'm fairly certain that's not the ...
1
vote
2answers
210 views

How To Get Type Info Without Using Generics?

I have an object obj that is passed into a helper method. public static MyTagGenerateTag<T>(this HtmlHelper htmlHelper, T obj /*, ... */) { Type t = typeof(T); foreach (PropertyInfo ...
0
votes
1answer
71 views

undefined reference to `typeinfo for class' [closed]

Possible Duplicate: g++ undefined reference to typeinfo Undefined symbols “vtable for …” and “typeinfo for…”? I can't use my class. class Accel { ...
0
votes
4answers
300 views

C++ virtual functions.Problem with vtable [closed]

Possible Duplicate: GCC C++ Linker errors: Undefined reference to 'vtable for XXX', Undefined reference to 'ClassName::ClassName()' I'm doing a little project in C++ and ...
0
votes
1answer
78 views

.Net How to compare generic typeinfo

I want to filter a collection of properties to find all properties that are of type EntityCollection<> like so: entity.GetProperties().Where(p => p.PropertyType == ...
0
votes
4answers
146 views

storing a type's type for processing variable argument lists

Is it possible to do something along the lines of: type t = int;//this would be a function which identifies what type the next argument is if( t == int ) printf( "%d", va_arg( theva_list, t ) ); ...