How do I get a variable's type in c? Objective c has className, php has get_class(), etc...
feedback
|
|
You look in the source code and find the type; since there's no dynamic types in C the static type is all there is. | |||
|
feedback
|
|
You can't do it. C provides absolutely no way to get to the type of a variable. | |||
|
feedback
|
|
Good luck with that. C will cast any block of memory to any data type you like. It doesn't really understand types per se. | |||
|
feedback
|
|
One way you can do it is to use the | |||||||||||
feedback
|
|
As the other answers have said, C provides no dynamic, runtime type inspection - all typing is performed at compile time. If you need runtime type determination in C, them you'll need to build that yourself somehow. Some examples,
These are the kinds of things that you might need to do if you're serializing data to/from a file, for example. Unfortunately, you get pretty much no help from the compiler or the standard library. A third party serialization library might help, but that would really depend on exactly what it is you want to do. | |||
|
feedback
|
|
Since it is impossible* to have a variable of unknown type in C, there is no need for this. There is no equivalent of There are places where more polymorphism would be useful, but C just doesn't have it. (*Note: I'm discounting unions, since they are a type all their own and the real question is what type you want to get out of it.) | |||
|
feedback
|