Tagged Questions

A void pointer (void*) in C and C++ is a pointer that has no type.

learn more… | top users | synonyms (1)

41
votes
5answers
9k views

objective c difference between id and void *

In Objective-C, what is the difference between id and void *?
22
votes
3answers
1k views

casting via void* instead of using reinterpret_cast

I'm reading a book and I found that reinterpret_cast should not be used directly, but rather casting to void* in combination with static_cast: T1 * p1=... void *pv=p1; T2 * p2= ...
20
votes
4answers
619 views

Why id is generic pointer?

I want to know why id is a weak reference pointer,how it is able to handle any class type pointer and at run time how can we detect that which type of class pointer is assigned to id.
18
votes
3answers
442 views

Is it undefined behaviour to delete a null void* pointer?

I know that deleteing a null pointer is a no-op: In either alternative, if the value of the operand of delete is the null pointer the operation has no effect. (C++ Standard 5.3.5 [expr.delete] ...
16
votes
5answers
541 views

Mental model for void* and void**?

Note: I'm a experienced C++ programmer, so I don't need any pointer basics. It's just that I never worked with void** and have kind of a hard time getting my mental model adjusted to void* vs. void**. ...
16
votes
10answers
4k views

Is it safe to delete a void pointer?

Suppose I have the following code: void* my_alloc (size_t size) { return new char [size]; } void my_free (void* ptr) { delete [] ptr; } Is this safe? Or must ptr be cast to char* prior to ...
12
votes
12answers
17k views

error: cast from 'void*' to 'int' loses precision

I have a function with prototype void* myFcn(void* arg) which is used as the starting point for a pthread. I need to convert the argument to an int for later use: int x = (int)arg; The compiler ...
9
votes
2answers
310 views

c: size of void*

I'm a bit confused with a void* pointer in C. Especially after reading this question: Is the sizeof(some pointer) always equal to four?, where one person says there is no guarantee that sizeof(int *) ...
9
votes
7answers
33k views

Concept of void pointer in C programming

Is it possible to dereference the void pointer without type-casting in C programming language? Also, is there is any way of generalizing a function which can receive a pointer and store it in void ...
8
votes
5answers
1k views

dynamic_cast from “void *”

According to this, void* has no RTTI information, therefore casting from void* is not legal and it make sense. If I remember correctly, dynamic_cast from void* was working on gcc. Can you please ...
8
votes
11answers
785 views

Genericity vs type-safety? Using void* in C

Coming from OO (C#, Java, Scala) I value very highly the principles of both code reuse and type-safety. Type arguments in the above languages do the job and enable generic data structures which are ...
7
votes
4answers
222 views

Linked list containing other linked lists & free

I have a generic linked list implementation with a node struct containing a void* to data and a list struct that holds a reference to head. Now here is my problem a node in the linked list may hold a ...
7
votes
8answers
555 views

What is a void pointer and what is a null pointer?

So I was going through some interview questions an I came across this question The answer to the question confused me throughly! It seems void and null could be used interchangeably according to this ...
7
votes
5answers
2k views

sizeof void pointer

why is sizeof void pointer 2 ?
7
votes
10answers
2k views

Why is it impossible to have a reference-to-void?

Why is it impossible to have a reference to void? The only thing I found in the C++ Standard is this line, at 8.3.2.1 A declarator that specifies the type "reference to cv void" is ill-formed. ...
6
votes
4answers
194 views

Why is `boost::any` better than `void*`?

What inherent advantages do boost::any and boost::any_cast offer over using void* and dynamic_cast?
6
votes
2answers
140 views

Is comparing two void pointers to different objects defined in C++?

Inspired by this answer about dynamic cast to void*: ... bool eqdc(B* b1, B *b2) { return dynamic_cast<void*>(b1) == dynamic_cast<void*>(b2); } ... int main() { DD *dd = new ...
6
votes
3answers
159 views

Why strange behavior with casting back pointer to the original class?

Assume that in my code I have to store a void* as data member and typecast it back to the original class pointer when needed. To test its reliability, I wrote a test program (linux ubuntu 4.4.1 g++ ...
5
votes
1answer
376 views

casting a block to a void* for dynamic class method resolution

+(BOOL)resolveClassMethod:(SEL)aSel { NSString *lString = NSStringFromSelector(aSel); if ([self validateLetterAndAccidental:lString]) { id (^noteFactoryBLOCK)(id) = ^(id aSelf) { ...
5
votes
4answers
396 views

C question: single dereference on a void** double indirection pointer

I got this message: expected 'void **' but argument is of type 'char **' when I tried to compile something similar to this: void myfree( void **v ) { if( !v || !*v ) return; ...
5
votes
3answers
422 views

How to get rid of void-pointers

I inherited a big application that was originally written in C (but in the mean time a lot of C++ was also added to it). Because of historical reasons, the application contains a lot of ...
5
votes
2answers
991 views

Void pointers in C++

I have written this qsort: void qsort(void *a[],int low,int high, int (*compare)(void*,void*)); When I call this on char *strarr[5]; It says invalid conversion from char** to void**. Why this is ...
4
votes
6answers
177 views

Is void* necessary apart from memory allocation related stuff

Is void* necessary apart from memory allocation related stuff in C++? Can you give me an example?
4
votes
3answers
146 views

Can I read any readable valid memory location via a (unsigned) char* in C++?

My search foo seems lacking today. I would like to know if it is legal according to std C++ to inspect "any" memory location via an (unsigned(?)) char*. By any location I mean any valid address of an ...
4
votes
4answers
230 views

C type punning question

How do I make the below function generic for uint8_t, uint16_t, uint32_t, int8_t, int16_t, int32_t and float_t? I don't like repeating the same logic in every case as you can see. The only difference ...
4
votes
1answer
299 views

Arithmetic with void pointers in C++

I need to access an object in a buffer, pointed by a void pointer. The object is located at a certain offset but since arithmetic on a void pointer is prohibited how can I access the object?
4
votes
1answer
627 views

Kernel Device Driver "dereferencing 'void *' pointer

I am learning how to write device drivers for linux, and I have a question regarding the use of generic data structures. I have an assignment, which I have fully functional...so I'm not asking you to ...
4
votes
5answers
460 views

C: Why is casting from void pointer to function pointer undefined?

In the man page for dlsym, the following snippet has been provided. double (*cosine)(double); handle = dlopen("libm.so", RTLD_LAZY); /* Writing: cosine = (double (*)(double)) ...
4
votes
2answers
2k views

C Dereference void* pointer

Hey guys, I'm new to C and for my first project I need to implement an array based queue. I want my queue to be able to hold any kind of object so I created a QueueElement structure to hold a void ...
4
votes
5answers
417 views

Relax void * casting in C++

In C, it's not an error to cast pointers to and from void *. A major obstacle in porting to C++ is the need to cast pointers when returning from functions dealing with generic pointers such as ...
4
votes
3answers
358 views

Test for void pointer in C++ before deleting

I have an array in C++: Player ** playerArray; which is initialized in the constructor of the class it is in. In the destructor I have: delete playerArray; except when testing the program ...
4
votes
4answers
762 views

Casting void pointers

I've seen a lot of the following in older C code: type_t *x = (type_t *) malloc(...); What's the point of casting the pointer returned from malloc() since it's void *? Is it because older C ...
4
votes
3answers
1k views

void pointers: difference between C and C++

I'm trying to understand the differences between C and C++ with regards to void pointers. the following compiles in C but not C++ (all compilations done with gcc/g++ -ansi -pedantic -Wall): int* p = ...
3
votes
2answers
79 views

C programming - threads, and what is void (*func)(void*, unsigned long)

I'm looking at modifying a toy OS system and I'm just trying to learn some of the code and what it does. I have been given a "Thread" structure which has as a member a "pcb" structure, which is a ...
3
votes
2answers
121 views

Can Someone Explain what this Means? void (*func)();

I have a struct that has a element in it denoted as void (*func)(); I know that void pointers are usually used for function pointers but I cannot seem to define the function. I keep getting ...
3
votes
3answers
118 views

C# and void pointers

I am writing my first C# application, but as luck would have it I must use void pointers (working with a DLL which returns handles). From what I read there are a few options: Unsafe code, for ...
3
votes
1answer
67 views

VC++ Compiler Can't Catch HANDLE and PHANDLE Type Mismatch

I spent a whole day looking for a bug caused by wrongly passing Windows PHANDLE type to a function expecting HANDLE!!! I was expecting the VC++ 2010 compiler to catch such a simple and obvious type ...
3
votes
2answers
169 views

C++ decode void pointer nicely for Matlab mex

I'm trying to write a C++ mex function for Matlab that can handle multiple datatypes. Matlab gives me an mxArray*, from which I can retrieve a void* for the data, and an mxClassID telling me the ...
3
votes
3answers
134 views

Safe way of casting void* to something higher?

I've got a generic class that manages resources of all kinds of types, but since I don't want to create an instance of ResourceManager for every T there is (thus having one resource manager for each ...
3
votes
3answers
96 views

Garbage value while incrementing a void*

This code: #include <stdio.h> int main(void) { void *ptr; int arr[] = {1,2,3,4,5}; ptr = arr; ptr++; printf("%d",*(int*)ptr); } Prints some garbage value but I was expecting it ...
3
votes
6answers
171 views

void* alternative in C#

I am making a class that calls a callback function and I want it to pass some data in some cases but that data may vary. In C++ I would use void* but in C# it's unsafe and it means it might get GCed. ...
3
votes
1answer
324 views

Void pointer to access structs in char array

I have a buffer, essentially an char array, filled with multiple different structs. The structs needs to be passed in a buffer like this because it is something I read/write to a socket. The structs ...
3
votes
4answers
599 views

C->C++ Automatically cast void pointer into Type pointer in C++ in #define in case of type is not given (C-style) [MSVS]

Hi! I've used the following C macro, But in C++ it can't automatically cast void* to type*. #define MALLOC_SAFE(var, size) { \ var = malloc(size); \ if (!var) goto error; \ } I know, I can ...
3
votes
6answers
323 views

in c can I do arithmetic on void * pointers

is this valid void *p = &X; /* some thing */ p += 12; and if so what does p now point to? I have (third party) code that does this (and compiles cleanly) and my guess is that the void * was ...
3
votes
4answers
2k views

What does “typedef void (*Something)()” mean

I am trying to understand what this means, the code I am looking at has in .h typedef void (*MCB)(); static MCB m_process; in .C MCB Modes::m_process = NULL; And sometimes when I do ...
3
votes
3answers
458 views

C: Extrapolating type from void pointer

Say a function takes a void pointer as an argument, like so: int func(void *p); How can we determine or guess the type of what p is pointing to?
3
votes
4answers
826 views

Equivalent to window.setTimeout() for C++

In javascript there's this sweet, sweet function window.setTimeout( func, 1000 ) ; which will asynchronously invoke func after 1000 ms. I want to do something similar in C++ (without multithreading), ...
3
votes
3answers
774 views

multiple inheritance: unexpected result after cast from void * to 2nd base class

My program needs to make use of void* in order to transport data or objects in dynamic invocation situation, so that it can reference data of arbitrary types, even primitive types. However, I recently ...
3
votes
6answers
533 views

Pointers to void pointers in C - can I use void** for rudimentary polymorphism?

I can understand how a void** might look in memory, but I'm wondering if I'm using it quite right. Are there any fundamental flaws in what I describe below? For example, although I can say "it works ...
3
votes
4answers
733 views

C++: casting to void* and back

* ---Edit - now the whole sourse* When I debug it on the end, "get" and "value" have different values! Probably, I convert to void* and back to User the wrong way? #include <db_cxx.h> #include ...

1 2 3 4