a pointer to a function, which can be stored in a variable allows a run-time choice of which function to run

learn more… | top users | synonyms (1)

9
votes
3answers
3k views

C: How do I get the name of the calling function?

I am using gnu tool chain. How can I, at run time, find caller of a function? i.e for example function B() gets called by many functions using function pointers. Now, whenever B gets called, I want to ...
9
votes
1answer
491 views

Should lambda decay to function pointer in templated code?

I read somewhere that a lambda function should decay to function pointer if the capture list is empty. The only reference I can find now is n3052. With g++ (4.5 & 4.6) it works as expected, unless ...
9
votes
4answers
827 views

How do you declare a const array of function pointers?

Firstly, I've got functions like this. void func1(); void func2(); void func3(); Then I create my typedef for the array: void (*FP)(); If I write a normal array of function pointers, it should ...
8
votes
4answers
300 views

Why the size of a pointer to a function is different from the size of a pointer to a member function?

Isn't a pointer just an address? Or I'm missing something? I tested with several types of pointers: pointers to any variables is the same (8B on my platform) pointers to functions are the same ...
7
votes
1answer
201 views

Does C++ support member function references?

C++ permits function pointers and function references. It also permits pointers-to-member-functions. But does it permit references-to-member-functions? I can't seem to deduce the rules from the ...
7
votes
4answers
847 views

C++ member function pointers in class and subclass

I have one base class which holds a map for function pointers like this typedef void (BaseClass::*event_t)(); class BaseClass { protected: std::map<std::string, event_t> events; ...
7
votes
1answer
7k views

How can I create function pointers from a string input in MATLAB?

If I use the inline function in MATLAB I can create a single function name that could respond differently depending on previous choices: if (someCondition) p = inline('a - b','a','b'); else p = ...
7
votes
2answers
1k views

How can I typedef a function pointer that takes a function of its own type as an argument?

Example: A function that takes a function (that takes a function (that ...) and an int) and an int. typedef void(*Func)(void (*)(void (*)(...), int), int); It explodes recursively where (...). Is ...
6
votes
5answers
326 views

Default value of a function pointer in C++

What is the default value of a function pointer in C++? (Apparently it can't be NULL, so what is it?) How is this program supposed to behave and why? struct S { void (*f)(); }; int main() { S s ...
6
votes
6answers
851 views

What is meaning of a pointer to a constant function?

Pointers can be declared as pointing to mutable (non-const) data or pointer to constant data. Pointers can be defined to point to a function. My coworkers and I were discussing the use of "const" ...
5
votes
2answers
3k views

Function pointer to class member function problems

First of all I have to admit that my programming skills are pretty limited and I took over a (really small) existing C++ OOP project where I try to push my own stuff in. Unfortunately I'm experiencing ...
4
votes
1answer
765 views

How do I get the argument types of a function pointer in a variadic template class?

This is a follow up of this problem: Generic functor for functions with any argument list I have this functor class (full code see link above): template<typename... ARGS> class Foo { ...
4
votes
2answers
351 views

int(int, int) style template function type syntax

I remember that when using Boost.Spirit and for the std::function addition to C++0x, you specify the function type by using a syntax that doesn't use pointers, like in defining ...
4
votes
5answers
443 views

Function pointer pointing to a function that takes a function pointer

How do I declare a function pointer that points to a function taking the same function pointer as the argument? I've tried the following without success: typedef void (*fnptr)(void (*)()); void ...
4
votes
2answers
620 views

C++ compilation error when passing a function into remove_if

So here's a snippet of my code. void RoutingProtocolImpl::removeAllInfinity() { dv.erase(std::remove_if(dv.begin(), dv.end(), hasInfCost), dv.end()); } bool ...
3
votes
5answers
274 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 ...
3
votes
2answers
165 views

non-member function pointer as a callback in API to member function

I'm using an API that requires me to pass a function pointer as a callback. I'm trying to use this API from my class in C++ but I'm getting compilation errors. The API definition is: typedef void ...
3
votes
5answers
330 views

Can operators be used as functions? (C++)

This is similar to another question I've asked, but, I've created an expression class that works like so: expression<int, int> exp(10, 11, GreaterThan); //expression<typename T, typename ...
2
votes
2answers
295 views

is_member_function_pointer implementation

I am trying to implement my own is_member_function_pointer and I'm having trouble with it. namespace __implementation { // integral_constant template<typename T, T v> struct ...
1
vote
3answers
2k views

null pointer when getting function pointer using boost::function::target

After reading this answer I thought I had a solution. At least the answer there is what I would like to do but I'm having a problem with the implementation. here is an outline of what I am trying to ...
0
votes
2answers
217 views

Passing any function as a template parameter?

I am looking for a way to pass a generic (constexpr, obviously) function to a template. It has to be able to take any amount of parameters, without using a lambda. This is what I have so far: ...
0
votes
5answers
2k views

What is the cloest thing to a function pointer in java? [duplicate]

Possible Duplicate: What's the nearest substitute for a function pointer in Java? I just have a situation where it would be nice to have the functionality of something similar to ...
8
votes
3answers
929 views

Templates, Function Pointers and C++0x

One of my personal experiments to understand some of the C++0x features: I'm trying to pass a function pointer to a template function to execute. Eventually the execution is supposed to happen in a ...
6
votes
3answers
585 views

Interview : function pointers vs switch case

During my Interview, I was asked to implement a state machine for a system having 100 states where each state in turn has 100 events, I answered 3 following approaches: if-else switch-case ...
6
votes
2answers
1k views

C++ lambda with captures as a function pointer

I was playing with C++ lambdas and their implicit conversion to function pointers. My starting example was using them as callback for the ftw function. This works as expected. #include <ftw.h> ...
6
votes
5answers
919 views

Incrementing function pointers

I just learned about function pointers (pointers pointing at the adress where where the machine code of a function is stored). This made me think about machine code and how it is stored in memory. ...
6
votes
4answers
574 views

& operator optional in function pointer assignment

In the following code: /* mylog.c */ #include <stdio.h> #include <stdlib.h> /* for atoi(3) */ int mylog10(int n) { int log = 0; while (n > 0) { log++; n /= ...
5
votes
1answer
238 views

static constexpr pointer-to-function, difference between compilers

When answering this question, I tried the following code with gcc (code compiled) and clang (code rejected): typedef long (*func)(int); long function(int) { return 42; } struct Test { static ...
5
votes
2answers
153 views

Calling a function through a function pointer - dereference the pointer or not? What's the difference?

I tried both - C and C++ and both work fine. I'm kinda new to function pointers and here's a simple code, that surprised me: #include <assert.h> void sort( int* arr, const int N ); int main ...
5
votes
2answers
3k views

Using generic std::function objects with member functions in one class

For one class I want to store some function pointers to member functions of the same class in one map storing std::function objects. But I fail right at the beginning with this code: class Foo { ...
5
votes
2answers
429 views

Stackoverflow and function pointers

I'm quite lost on this one and I hope someone here could help. My application consists of hundreds of functions evaluating numerical code (source is in the 5MB range each) and I manage the functions ...
4
votes
3answers
120 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 { ...
4
votes
4answers
204 views

How do I declare a function that returns a function pointer?

Imagine a function myFunctionA with the parameter double and int: myFunctionA (double, int); This function should return a function pointer: char (*myPointer)(); How do I declare this function ...
4
votes
4answers
372 views

why do we need to call these functions at run time using function pointers. we can as well call them directly

Having read a bit about function pointers and callbacks, I fail to understand the basic purpose of it. To me it just looks like instead of calling the function directly we use the pointer to that ...
4
votes
3answers
2k views

Passing a member function to for_each

The "solution" below compiles but it is not what I want. I would like to pass the put member function to for_each and not *this. Using boost is NOT an option. Can this be solved within C++03? ...
3
votes
1answer
63 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. ...
3
votes
1answer
146 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: ...
3
votes
1answer
244 views

Delphi: working with Pointer functions

I'm new in delphi, my program developed in delphi working with a dll developed in C++, I need working with pointer functions that throw exceptions of Access Violation address and after many test I ...
3
votes
1answer
247 views

Avoiding a static member function in c++ when using a callback interface from C

I would like to access the data within this member function that is static. Right now the member function is static so that I can use it with a third party API written in C that has typdef function ...
3
votes
2answers
1k views

Calling C++ member function pointer from a struct

I have found information on calling C++ member function pointers and calling pointers in structs, but I need to call a member function pointer that exists inside of a structure, and I have not been ...
3
votes
4answers
1k views

Function pointers working as closures in C++

Is there a way in C++ to effectively create a closure which will be a function pointer? I am using the Gnu Scientific Library and I have to create a gsl_function. This function needs to effectively ...
3
votes
4answers
407 views

Pointer to current function

Is there any way to get a pointer to the current function, maybe through gcc extensions or some other trickery? Edit I'm curious whether it is possible to get the function pointer without ever ...
3
votes
2answers
2k views

Private member function that takes a pointer to a private member in the same class

How can I do this? (The following code does NOT work, but I hope it explains the idea.) class MyClass { .... private: int ToBeCalled(int a, char* b); typedef ...
3
votes
3answers
856 views

Conditional operator can't resolve overloaded member function pointers

I'm having a minor issue dealing with pointers to overloaded member functions in C++. The following code compiles fine: class Foo { public: float X() const; void X(const float x); float ...
3
votes
2answers
1k views

Is it safe to pass function pointers as arguments to dll functions and invoke them from inside of the dll?

I would like to pass some (dll or not) function pointers as arguments to some dll functions and call them from inside of the dll. I wonder if it is safe because I have found an information on ...
2
votes
1answer
108 views

Convert lambda with capture clause stored in std::function to raw function pointer

Since my last recent question was unfortunately worded and resulted in a solution to another problem then mine, here I will try to formulate my actual problem in a clear way. Before we start, as a ...
2
votes
1answer
94 views

C++ function pointer to a member function - which address does it receive?

Assuming I have this class: class Shape { public: int value; Shape(int v) : value(v) {}; void draw() { cout << "Drawn the element with id: " << value << ...
2
votes
4answers
796 views

how to pass C++ callbacks between unrelated classes?

In a non-boost project, I have a class which uses a timer based on a certain user action (button pressed/released). I want this class generic, so it takes callbacks for user defined actions. // ...
2
votes
3answers
429 views

Set a function pointer to a static address

I'm injecting a DLL into another process and want to call a function that is in that binary based on it's address (0x54315). How can I actually declare a function, and then set it to this address? ...
2
votes
2answers
886 views

How to use varargs in conjunction with function pointers in C on Win64?

Consider the following C program: #include <stdio.h> #include <stdarg.h> typedef void (callptr)(); static void fixed(void *something, double val) { printf("%f\n", val); } static ...