¿Qué significa convertir un valor entero a void*
o viceversa desde el punto de vista de la memoria? Mi comprensión es void*
es una dirección a un bloque de memoria de longitud no especificada.
Esto parece ser algo así como comparar la manzana con las naranjas.¿Qué significa convertir int a void * o viceversa?
int myval = 5;
void* ptr = (void*)myval;
printf("%d",(int)ptr);
Me di cuenta de que debería haber dado el contexto exacto en el que se utiliza.
int main(int argc, char* argv[]) {
long thread; /* Use long in case of a 64-bit system */
pthread_t* thread_handles;
/* Get number of threads from command line */
if (argc != 2) Usage(argv[0]);
thread_count = strtol(argv[1], NULL, 10);
if (thread_count <= 0 || thread_count > MAX_THREADS) Usage(argv[0]);
thread_handles = malloc (thread_count*sizeof(pthread_t));
for (thread = 0; thread < thread_count; thread++)
pthread_create(&thread_handles[thread], NULL, Hello, (void*) thread);
printf("Hello from the main thread\n");
for (thread = 0; thread < thread_count; thread++)
pthread_join(thread_handles[thread], NULL);
free(thread_handles);
return 0;
} /* main */
/*-------------------------------------------------------------------*/
void *Hello(void* rank) {
long my_rank = (long) rank; /* Use long in case of 64-bit system */
printf("Hello from thread %ld of %d\n", my_rank, thread_count);
return NULL;
} /* Hello */
Este código es del libro de Peter Pachecho sobre programación paralela.
Posible duplicado de: http://stackoverflow.com/questions/3568069/is-it-safe-to-cast-an-int-to-void-pointer-and-back-to-int-again –
Es aún peor ... al menos como comparar manzanas con patatas – alk