I'm working with some legacy code that makes extensive use of this kind of thing:
// Allocate a look-up-table of pointers.
long *pointerLUT = (long *) malloc(sizeof(long) * numPointers);
...
// Populate the array with pointers.
for (int i=0; i<numPointers; i++) {
pointerLUT[i] = (long) NewFoo();
}
...
// Access the LUT.
Foo *foo = (Foo *) pointerLUT[anIndex];
As you can see, this allocates an array of longs, with the idea of using them generic pointer storage.
Q1. Is this approach safe?
Q2. Style-wise, how could it be improved? Does it need to be? (The typecasting rattles the fear-monkey in me.)
Thanks.
size_tinstead oflong... – smerlin Dec 2 '10 at 23:26uintptr_twould be a better option. If a C implementation supports the ability to convert a pointer type to an integer and back without loss of information it will probably provideuintptr_t. The difference betweenuintptr_tandsize_tis that ifuintptr_tis provided, it is guaranteed to hold any valid pointer to void, and guaranteed that when converted back to a pointer to void it shall compare equal to the original. – dreamlax Dec 2 '10 at 23:29