Tagged Questions
The function-pointers tag has no wiki summary.
138
votes
15answers
29k views
What's the nearest substitute for a function pointer in Java?
I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This is a perfect ...
58
votes
2answers
2k views
How does the C code that prints from 1 to 1000 without loops or conditional statements work?
I've found C code that prints from 1 to 1000 without loops or conditionals :
But I don't understand how it works. Can anyone go through the code and explain each line?
#include <stdio.h>
...
34
votes
1answer
513 views
Why do all these crazy function pointer definitions all work? What is really going on?
So while working my way through TCPL, I found myself implementing the calculator program in Chapter 6. In debugging my code, I noticed that I had typed get_token; instead of get_token();. With the ...
26
votes
1answer
831 views
Why is 'X x; x();' allowed, when 'X' defines a conversion to function pointer, but not, when it defines a conversion to a functor?
void f(int){}
typedef void (*f_ptr)(int);
struct Functor{
void operator()(int){}
};
struct X{
operator f_ptr(){ return f; }
};
struct Y{
operator Functor(){ return Functor(); }
};
int ...
20
votes
4answers
1k views
How does dereferencing of a function pointer happen?
Why and how does dereferencing a function pointer just "do nothing"?
This is what I am talking about:
#include<stdio.h>
void hello() { printf("hello"); }
int main(void) {
...
20
votes
10answers
14k views
Function Pointers in Java
This may be something common and trivial, but I seem to be having trouble finding a concrete answer. In C# there is a concept of delegates, which relates strongly to the idea of function pointers from ...
20
votes
8answers
9k views
How do function pointers in C work?
I had some experience lately with function pointers in C.
So going on with the tradition of answering your own questions, I decided to make a small summary of the very basics, for those who need a ...
18
votes
9answers
26k views
Callback functions in Java
Is there a way to do pass a call back function in a Java method?
The bahaviour I'm trying to mimic is a .Net Delegate being passed to a function.
I've seem people suggesting creating a separate ...
17
votes
3answers
237 views
Non-pointer typedef of member functions not allowed?
After getting an answer to this question I discovered there are two valid ways to typedef a function pointer.
typedef void (Function) ();
typedef void (*PFunction) ();
void foo () {}
Function * p = ...
16
votes
4answers
3k views
How does template parameter of std::function work? (implementation)
In Bjarne Stroustrup's home page (C++0x FAQ):
struct X { int foo(int); };
std::function<int(X*, int)> f;
f = &X::foo; //pointer to member
X x;
int v = f(&x, 5); //call X::foo() for x ...
14
votes
2answers
341 views
Error with address of parenthesized member function
I found something interesting. The error message says it all. What is the reason behind not allowing parentheses while taking the address of a non-static member function? I compiled it on gcc 4.3.4.
...
14
votes
3answers
288 views
Do compilers optimize away calls to trivial functions made through pointers?
Say I have a function that takes a function pointer:
int funct(double (*f)(double));
And I pass it a function that doesn't actually do anything:
double g(double a) { return 1.0;}
//...
funct(g);
...
14
votes
6answers
9k views
Callback functions in c++
In c++, when and how to use a callback function?
EDIT:
I would like to see a simple example to write a callback function.
14
votes
3answers
17k views
how to use array of function pointers?
how to use array of function pointers in c?
how to initialize them?
13
votes
1answer
251 views
How to recursively dereference pointer (C++03)?
I'm trying to recursively dereference a pointer in C++.
If an object is passed that is not a pointer (this includes smart pointers), I just want to return the object itself, by reference if ...
13
votes
1answer
201 views
noexcept specifiers in function typedefs
Are noexcept specifiers accepted in function typedefs?
as in:
typedef void (*fptr)() noexcept;
Intuitively, noexcept specifiers seem to make sense since they would allow some optimisations at ...
13
votes
6answers
330 views
One question about function definition in C++
I'm reading some material about function pointer in C++, and come across one function definition which I do not understand.
Standard function definition have the form:
type name (param...)
But the ...
12
votes
3answers
314 views
“unpacking” a tuple to call a matching function pointer
I've created a simplified example showing a problem I'm struggling to solve. I'm trying to store in a std::tuple a varying number of values, which will later be used as arguments for a call to a ...
12
votes
7answers
1k views
Does Function pointer make the program slow?
I read about function pointers in C.
And everyone said that will make my program run slow.
Is it true?
I made a program to check it.
And I got the same results on both cases. (measure the time.)
So, ...
11
votes
1answer
140 views
Pointers to different instances of one templated function guaranteed to compare unequal?
Is it safe to assume that two function pointers, that point to different instances of one templated function, will compare unequal?
Even if the templated function does not use the template ...
11
votes
2answers
136 views
Are C functions guaranteed to have a fixed memory address?
If I store a pointer to a function, and then at some later point during my program's execution, compare it to the address of the same function, are the two addresses guaranteed to be equal.
E.g.
int ...
11
votes
3answers
557 views
address of c++ template function
Why does this fail to compile? (g++-4.5)
template < typename U >
static void h () {
}
int main () {
auto p = &h<int>; // error: p has incomplete type
}
EDIT: Here is a ...
11
votes
6answers
1k views
C++ function pointers and classes
ok say I have
void Render(void(*Call)())
{
D3dDevice->BeginScene();
Call();
D3dDevice->EndScene();
D3dDevice->Present(0,0,0,0);
}
This is fine as long as the function I ...
10
votes
4answers
146 views
Cannot convert from type x to type x?
When compiling (Microsoft Visual C++ 2005 Express) this piece of code:
struct A
{
template< typename T > static A Foo( void ) { return A(); }
struct S
{
template< ...
10
votes
2answers
86 views
Can a function pointer with a const argument be used as a function pointer with a nonconst argument?
Perhaps the title isn't clear in itself...
I have a function f (provided by some library) that takes as an argument a function pointer of signature void g(int*), i.e.
void f(void (*g)(int*));
...
10
votes
3answers
248 views
Objective-C Selector pointer to be passed to a C function
I have a C struct that contains a function pointer. Now, I have used this setup within C with no problems, but now I'm using this C struct in Objective-C and I need to pass a function (or selector) ...
10
votes
4answers
272 views
C++ Conversion operator for converting to function pointer
I'm been grinding my head against an idea that is simple enough in my head, but I can't figure out how to implement in C++.
Normally, I can declare a class with a conversion operator like in this ...
10
votes
0answers
268 views
C “function pointer” typedef without asterisk? [closed]
Possible Duplicate:
what does this typedef mean? a function prototype ?
Today I came across this syntax
typedef double (d2d)(double);
cdecl tells me it's a function returning a double ...
10
votes
3answers
3k views
C# P/Invoke: Marshalling structures containing function pointers
Sorry for the verbose introduction that follows. I need insight from someone knowing P/Invoke internals better than I do.
Here is how I'm marshalling structures containing function pointers from C to ...
10
votes
8answers
1k views
Can I declare a function that can take pointer to itself as an argument?
Reading a question in stackoverflow, I wondered whether it's possible to declare a function that takes a pointer to itself. I.e. to make such declaration of foo, for which the following would be ...
9
votes
1answer
96 views
How to use a function pointer to a static member function as a template parameter?
This code
template <void (*func)()>
static void call() { func(); }
template <typename T>
struct A {
A() { call<static_func>(); } // <--- error
static void ...
9
votes
4answers
257 views
What is the merit of the “function” type (not “pointer to function”)
Reading the C++ Standard, i see that there are "function" types and "pointer to function" types:
typedef int func(int); // function
typedef int (*pfunc)(int); // pointer to function
typedef func* ...
9
votes
4answers
725 views
Can a lambda expression be passed as function pointer?
I am trying to pass a lambda expression to a function that takes a function pointer, is this even possible?
Here is some sample code, I'm using VS2010:
#include <iostream>
using namespace std;
...
9
votes
2answers
2k views
Call c++ function pointer from c#
Is it possible to call a c(++) static function pointer (not a delegate) like this
typedef int (*MyCppFunc)(void* SomeObject);
from c#?
void CallFromCSharp(MyCppFunc funcptr, IntPtr param)
{
...
9
votes
6answers
593 views
9
votes
4answers
731 views
calling code stored in the heap from vc++
Imagine I am doing something like this:
void *p = malloc (1000);
*((char*)p) = some_opcode;
*((char*)p+1) = another_opcode; // for the sake of the example: the opcodes are ok
....
etc...
How can I ...
8
votes
4answers
235 views
AS3 passing a function as a parameter creates memory leaks
I have a function that takes another function as a parameter. Something like this :
public function onHits(target : Shape, callback : Function) : void
I use it by passing a member function as a ...
8
votes
3answers
107 views
In python, when you pass internally defined functions into other functions, how does it keep the variables?
For example, why does this work?
def func1(func1var):
def innerfunc(innerfuncvar):
if func1var == 1:
print innerfuncvar
else:
print 5
...
8
votes
5answers
301 views
register callback in one application to be retrieved in another
gcc 4.6.0 c89
I have type of client server application. The server some code in an event loop that will wait for an event from the client.
This is not a client server that will be using UDP/TCP ...
8
votes
4answers
669 views
Can I use a lambda function or std::function object in place of a function pointer?
I've got a library that I need to use that defines the following:
typedef void CallbackFunction(const int& i);
and has a function to register your callback that looks like:
void ...
8
votes
4answers
766 views
C++ Function pointers with unknown number of arguments
I need some help with C++, please!
I'm writing a command parser for a small text-based game, and I've run into some problems. The parser is supposed to read and parse commands entered by the player.
...
8
votes
3answers
669 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 ...
8
votes
8answers
4k views
Javascript Function-Pointer Assignment
Consider this javascript code:
var bar = function () { alert("A"); }
var foo = bar;
bar = function () { alert("B"); };
foo();
When running this code I get "A". Is this behavior a part of javascript ...
8
votes
6answers
2k views
Calling base class definition of virtual member function with function pointer
I want to call the base class implementation of a virtual function using a member function pointer.
class Base {
public:
virtual void func() { cout << "base" << endl; }
};
class ...
8
votes
4answers
663 views
Where exactly do function pointers point?
Given that all the primitive data types and objects have memory allocated, it is intuitively easy to imagine the pointers to these types.
But where exactly do function pointers point to? Given that ...
8
votes
4answers
9k views
static vs extern “C”
(expert C/C++ question) What is the difference between a static member function and an extern "C" linkage function ? For instance, when using "makecontext" in C++, I need to pass a pointer to ...
8
votes
6answers
7k views
Casting a function pointer to another type
Let's say I have a function that accepts a void (*)(void*) function pointer for use as a callback:
void do_stuff(void (*callback_fp)(void*), void* callback_arg);
Now, if I have a function like ...
8
votes
8answers
9k views
How to get function's name from function's pointer in C?
How to get function's name from function's pointer in C?
Edit: The real case is: I'm writing a linux kernel module and I'm calling kernel functions. Some of these functions are pointers and I want to ...
8
votes
12answers
2k views
What is the cost of using a pointer to member function vs. a switch?
I have the following situation:
class A
{
public:
A(int whichFoo);
int foo1();
int foo2();
int foo3();
int callFoo(); // cals one of the foo's depending on the value of whichFoo
...
7
votes
1answer
160 views
VC++ error when using a pointer to a template function
I'm trying to write a template callback function for libcurl. However, when using a pointer to an instance of the template function, VC++ 2008 and 2010 keep giving me this error:
...