a pointer to a function, which can be stored in a variable allows a run-time choice of which function to run
9
votes
9answers
438 views
C++ allocates abnormally large amout memory for variables
I recently got to know an integer takes 4 bytes from the memory.
First ran this code, and measured the memory usage:
int main()
{
int *pointer;
}
It took 144KB.
Then I modified the code ...
0
votes
2answers
95 views
using c++ class member function with C function pointer
I am using a C library that implements a command shell. Custom shell commands are registered by implementing a function with the following call signature:
typedef void(* ...
1
vote
2answers
103 views
Creating a C++ static wrapper function with specific signature
I'm having some trouble creating a static wrapper function using template parameters. I don't want to pass the function directly to the wrapper function, because it needs a specific signature int ...
0
votes
4answers
57 views
Can derived class have two sets of virtual functions?
Is it possible to have a derived class to have two sets of the same virtual functions as the base class? I'm looking to do something like the following. The idea being able to choose between two ...
0
votes
1answer
59 views
For function pointer “fptr”,why is value of “fptr” and *fptr same?What *fptr even mean?I only knew (*fptr)() or fptr() [duplicate]
Why is a function pointer behaving like an array pointer as far as this behavior goes?I mean, let's begin with the case of an array list[] where we'll consider &list and list.
char name[5]= ...
3
votes
5answers
246 views
Is it possible to swap C functions?
Looking to see if anyone knows if its possible to swap C functions...?
void swap2(int(*a)(int), int(*b)(int)) {
int(*temp)(int) = a;
*a = *b;
*b = temp;
// Gives 'Non-object type 'int ...
2
votes
2answers
32 views
Call map key to invoke function requiring a parameter - how to get working
Here is my code.
#include <map>
#include <string>
#include <algorithm>
class maptest {
public:
int doubler(int val) { return val * 2; }
int halver(int val) { return val / 2; ...
2
votes
1answer
53 views
Calling an objective c method using a function pointer from a c++ method
I have a c++ class that needs to call an objective c method using a pointer to that method. This method returns void and takes an argument of type 'status' where status is a simple integral enum.
...
0
votes
1answer
104 views
C++11: pointers to member function using std::function::target()
I know this is already a long discussed topic, but I couldn't yet find an answer that satisfies me.
Question in short: even using the C++11's function::target() capabilities, is it not possible to ...
1
vote
4answers
59 views
Why use a callback instead of a normal function call?
I'm trying to understand callbacks, and do get the idea, but do not understand why it is really needed.
Specifically, what added benefit does it provide over a normal function call? I'm looking at ...
-1
votes
1answer
34 views
return pointers from function. Value not updated for one pointer
I have tried to obtain 2 pointers from a function and print it in main. the vague thing is one pointer seems to have recovered its values, while the other hasn't. And both the pointers, have the ...
1
vote
3answers
49 views
Why is the use of function pointers causing my following program to crash?
I intend to understand the working of function pointers in C.I wrote this program for a function which has a function pointer disp_function that is expected to printed the contents of an array of any ...
0
votes
3answers
55 views
Initialize function pointer
I am trying to get the address of a method (the method is called EndScene) it is a function of a D3D9 object and assign it to my function pointer.
But when i have the address i have trouble assigning ...
1
vote
2answers
59 views
Definition of Function Pointers
i am working with an sdk, where i have to define a call-back function, the problem is, that the "sample" code are shipped with global functions and a very procedural approach. To bring it into a ...
0
votes
3answers
87 views
Get list of functions in a namespace at runtime?
Is it possible to get a list of functions in a certain namespace or all functions in a program at runtime?
I have a function pointer map and I need to add commands on my own to it, but I thought: why ...
3
votes
1answer
61 views
Using SIMD in a Game Engine Math Library by using function pointers ~ A good idea?
I have been reading Game Engine Books since I was 14 (At that time I didn't understand a thing:P)
Now quite some years later I wanted to start programming the Mathmatical Basis for my Game Engine. ...
4
votes
3answers
117 views
Visual C++ ~ Not inlining simple const function pointer calls
Dear StackOverflowers,
I got a simple piece of code which I am compiling on Microsoft Visual Studio C++ 2012:
int add(int x, int y)
{
return x + y;
}
typedef int (*func_t)(int, int);
class A
{
...
0
votes
2answers
43 views
Pass a non-static method pointer as an argument to another method
Sorry to ask such a question as I'm sure it's been answered before, but I'm struggling to find an answer and it's not for the want of looking... anyway..
class foo
{
void read(void ...
1
vote
4answers
44 views
Stuck on a thread issue
So I have this
void* tf(void* p);
which I dont totally understand. What I think it is, is a function pointer with a void pointer for a parameter. I am using it to make a thread like this:
...
0
votes
2answers
25 views
Personnal implementation of Java events in Slick2D
I'm making my own windowing system in Java with Slick2D right now and I want to add buttons to my windows! The thing is that I have no knowledge on events or such things... Everywhere I look it's ...
0
votes
1answer
102 views
C++11 - What is wrong with this use of decltype function pointer?
While trying to implement a Delegate-class using variadic templates I ran into a problem I'm unable to solve:
/// --------------------------------------
/// @thanks God
/// Steve ...
0
votes
0answers
43 views
Cuda function pointer consistency
I recently tried to use function pointer to dynamically define several processing stage in my application, running on a sm_30.
It would be difficult to post the code here, as there are many ...
0
votes
2answers
39 views
Compile errors in a test program with function pointers
I've written a simple C program to learn usage of function pointers:
#include <stdio.h>
int (*workA) ( char *vA );
int (*workB) ( char *vB );
int main( int argc, char * argv[] )
{
char ...
3
votes
1answer
144 views
Pointer to variadic function template
I have a simple class A, providing a variadic function template. This function uses private data from within A, but the function itself is public. The class goes as follows:
class A {
public:
...
0
votes
2answers
18 views
Overriding versus function pointers
Why do programmers prefer overriding to using function pointer fields?
Performance benefits? - Not that I know of.
Is it code readability? - No, the syntax is pretty much the same.
The only ...
0
votes
1answer
38 views
Clarification on concept of callbacks and function pointers in c
I found this line on wikipedia about function callbacks,
"In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
0
votes
1answer
48 views
For a function pointer func_ptr,(*func_ptr)() invokes the function.But why are (****func_ptr)() or (***func_ptr)() valid?
Suppose func_ptr is a function pointer to the function test().Then we know that can invoke the function test() using this pointer as
(*func_ptr)();
But I was told today that even ...
0
votes
3answers
48 views
Changing stdout (putch() function) on the fly in C
I'm using the XC8 compiler. For that, you have to define your own void putch(char data) function in order for functions like printf() to work, as is described here. Basically, putch() is the function ...
0
votes
2answers
57 views
Why can we use function pointers both as (*func_ptr)() and func_ptr() to invoke a function,but not so for array pointers?
Suppose we have a function pointer func_ptr of type void (*func_ptr)().Then we know that using this we can invoke the function using this pointer both as :
(*func_ptr)();
func_ptr();
But ...
0
votes
3answers
39 views
What do we have in the bytes beginning at the “Address of a function”?How to know how many bytes to consider?
My brain gets numb just even imagining this.So bear with me if my question is little wordy.So I've sliced my question into parts.
1) What do we have at the at the bits/bytes starting at the address ...
0
votes
1answer
49 views
Getting an error: no match for operator[] in [closed]
As stated above I'm getting a error:no match for operator[] in mHbbtSMFnPtrs[mCurrHbbtvState][hbbtvSMEvntsParam](hbbtvSMEvents, hbbtvSMEvntsParam);
typedef int (*HBBTVSMFnPtr)(int hbbtvSMEvent, ...
4
votes
5answers
107 views
What is (void (**) ()) and how to typedef it?
In an embedded code I have to understand, there's this line of code :
*((void (**) ()) 0x01) = c_int01; /* Write the interrupt routine entry */
I can grasp the fact that you setup the interruption ...
0
votes
1answer
55 views
Array of function pointer pointers
If I want an array of pointers to something, I declare it like this:
Type** var = new Type*[8];
and use it like this:
if(var[0] != NULL)
// Do something
But how can I have an array of ...
0
votes
1answer
48 views
Passing template functions as function pointer
#include<iostream>
template<typename T>
class testClass {
public:
T a;
};
template<typename T>
void testFunc( void *a ) {
testClass<T> *tempClass = ...
4
votes
2answers
161 views
Function template as parameter
I have been trying to implement in C++11 the function map from Python. It seems to work for any kind of callable objet, but I have to specify the template type parameter if I want it to work with ...
1
vote
1answer
76 views
How to hook a function from the same process and get the address of the caller function?
I need to do it to avoid calling a function of my process from injected code.
so would like to hook this function to check whether the call is from the current module or it is from an external ...
0
votes
1answer
41 views
Access violation writing data to a doubly linked list
I got the following error:
0xC0000005: Access violation writing location 0x00000040.Which I assume means that the new contact is empty,when adding a new information to a doubly linked list using ...
3
votes
3answers
73 views
Pointers to static methods in Python
Why is it that in the following code, using a class variable as a method pointer results in unbound method error, while using an ordinary variable works fine:
class Cmd:
cmd = None
...
2
votes
1answer
64 views
Is mycomparison a object , function or function pointer?
I was going through following code:
template <typename String>
void test_decimals()
{
SensibleLessThan<String> mycomparison;
String lhs = "1.212";
String rhs = "1.234";
...
3
votes
4answers
83 views
Why does the address of a function change with every run?
I'm struggling with mapping addresses to their symbols for debugging purposes (getting the callstack). The MS dbghelp.dll can tell the symbol from an address (see SymFromAddr, MSDN). However, it ...
1
vote
1answer
60 views
static const function pointers C
My question is quite close to this one:
How do you declare a const array of function pointers?
I successful created static const funtion pointer arrays in an include file on mine.
void fun1( void* ...
0
votes
1answer
100 views
Passing pointer to variadic arguments in C++?
I'm looking to pass a variable number of arguments by pointer to a callback function that is also referenced by pointer. Is there any way I can create a list of args that can be passed by reference?
...
0
votes
2answers
106 views
Using function pointers in template class c++
I am working with a template class which parses data. Each line of data will require calling one of two functions to handle the data. This decision is determined at the time the parser is constructed ...
1
vote
0answers
52 views
Why does setting function pointer as pointer and pointerpointer work? [duplicate]
One more time I got trapped by pointer logic.
The following code uses a function typedef tOutFunction.
It defines a global variable to this function pointer and a set method.
Why does
...
0
votes
2answers
50 views
Returning pointers from function gives weird numbers
Iam trying to get the max number of this array that has numbers from -20 to 30 but it returns weird numbers like this --> 2255667 which is impossible if all is going well.
int * ptomx(int a[],int n)
...
0
votes
1answer
61 views
Pointer to functions in a STL map
I am facing a problem regarding function pointers syntax. I have used these before but the situation i have make things totally not obvious anymore.
So, i am designing a factory that creates nodes ...
-8
votes
1answer
69 views
Which of these Function Pointers Work? [closed]
Given the following function declaration:
int foo(int (*bar)(int, char*)) {
...
}
Which of the following work as parameters to foo? i.e., (foo(f1)).
int f1(char *a, char *b);
int f2(int a, ...
3
votes
2answers
81 views
Double indirection in C++ vtables
I wrote this very simple C++ program, and I was wondering about why the compiler lays out the vtable across two pointer dereferences. Here's the C++ program:
class Foo {
public:
virtual void bar() ...
1
vote
2answers
71 views
Using a function pointer without knowing the instance in advance
Take the following as a example:
(Note, the example doesn't work, but it should be enough to illustrate what I am trying to do)
class Point {
float x, y;
public:
float getX() const { return ...
3
votes
1answer
72 views
Simple template code compiles in Visual Studio but not with LLVM
What I'm trying to do is create a template function that stores a generic function pointer and information about how to cast to it's actual type. This is being used by my script binding API to make ...





