How can I write a function which accepts a parameter of a generic type in C? (such as an int, a char...)
|
|
|||||||||||||
|
|
|
I'd personally do it like this: 1) send a pointer to void * as the first parameter 2) send a second parameter which tells you what the void * is (an enum for the possibilities) and cast parameter 1 to that This would make you write ugly code with lots of switches, but might work if done carefully and thoroughly tested. Something like:
Edit: that is assuming you don't want variadic functions (which did not seem to me were what you wanted) |
||||||||||||
|
|
|
There are different methods, all with their disadvantages.
won't work, instead:
Depending on the problem, there is usually not that much code duplication when you put the common parts into subfunctions. |
||
|
|
|
|
You might consider the printf approach. It passes in an argument, that identifies the type for the called function.
Here is a link that demonstrates how to implement a variable argument list. |
||
|
|
|
|
it's been a while since i've done anything like this, so check the syntax. To take off from Laura's answer, to make it more concise:
|
||||
|
|
|
If you don't want to pass a pointer, you could pass a union. Declare a union like a struct, but you can only use one member at a time. For example:
Remember that you can only use one field at a time, and if you set, say, f.c to something, the value of f.i is going to change in a potentially messy way. (I believe it's undefined behavior, but if a compiler ever does anything except byte-for-byte substitution it will fail to compile a whole lot of existing code.) Also, remember that the language provides no clue as to what field you last changed, so it's up to you to keep track of it somehow. It isn't a very clean solution, but neither is the |
|||
|
|
|
What you are looking for is called a variadic function. Linked below is a Wikipedia article on the topic: |
||||||
|
|
|
Using a |
||
|
|
|
|
Your best bet is to use templating. You can use void pointers but that can lead to other problems if done incorrectly. Best thing to do is go HERE read the tutorial and try it out for yourself. You shouldn't have any problem understanding the concept of templates. |
||||||||||||
|
