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)

-1
votes
1answer
37 views

Passing Function Pointer of an interface function

I have following situation, there are two interfaces: interface ILLShapeAttribute { virtual void DefineAttribute(const char* pszAttributeName, VARIANT* pvAttributeData) = 0; }; interface ...
2
votes
1answer
80 views

Why surround the function with parentheses?

I shown some code that i did understand. following code is example code. static void (_func)(int p); int main() { .... _func(3); .... } static void (_func)(int p) { .... } Generally I know ...
1
vote
1answer
30 views

Difference between passing &:method and :method as function arguments in ruby

I'm struggling in understanding when to use the ampersand in passing symbols to functions representing a method. For example, If I wanted to calculate the sum of the range 1..10, I could do the ...
1
vote
1answer
41 views

Pass an object and a member function as parameters

I'm trying to create a template function which calls a member function of a class. template<typename T> void call(T owner, void (T::*func)()) { (owner.func()); } and the usage: Foo a; ...
0
votes
1answer
32 views

error C2664 cannot convert parameter 1 from 'std::string (__thiscall ClassName::* )(std::string)' to 'std::string (__cdecl *)(std::string)

I'm making a unmanaged application to handle an event fired in c# here. FYI:: I want to handle a custom event when my Name property in C# class is changed. I have gone through the following links: ...
1
vote
3answers
88 views

Functions and functors as arguments to template functions

I'm looking for a way to pass function pointers, functors or lambdas to a template function g which uses the passed function's argument types. A minimal example for my problem is this function: ...
1
vote
2answers
105 views

Correct use of function pointers

The doubly-linked list upon which I have based a fair amount of code appears to have a bug in it related to the way that I go about deleting nodes from the list, but I am unable to spot it. Consider ...
1
vote
2answers
31 views

ansi c globally accessible callback

I'm trying to setup a globally accessible callback function within a c program using a method supplied during runtime. So far I've got the following: principal.h ----------- extern Callback ...
2
votes
1answer
38 views

External inline functions gcc

I was reading about inline functions in C/C++ from: http://publib.boulder.ibm.com/infocenter/comphelp/v7v91/index.jsp?topic=%2Fcom.ibm.vacpp7a.doc%2Flanguage%2Fref%2Fclrc07cplr243.htm For the ...
1
vote
3answers
41 views

Lua - Execute a Function Stored in a Table

I was able to store functions into a table. But now I have no idea of how to invoke them. The final table will have about 100 calls, so if possible, I'd like to invoke them as if in a foreach loop. ...
0
votes
2answers
32 views

tree creation and sorting, will not work past first node

so I am trying to make a program that has three different types of trees : cars, clients, and suppliers. is uses a single set of creation and sorting functions. however something is wrong and the ...
0
votes
1answer
20 views

Numerical Recipes: Member functions of a class as arguments

My question concerns Numerical Recipes. I'm trying to use the conjugate gradient solver “frprmn.cpp” to minimize the negative log-likelihood function of a problem that depends on data and a bunch of ...
1
vote
1answer
86 views

Storing function pointer for later use

I've tried to find the answer to this but haven't found anything that works. I'm trying to create a class of static methods so I can pass in a function pointer to SPI::transmitData() that I can later ...
0
votes
2answers
77 views

Bind class member to plain-C function pointer

I have a library which sources I may not change. It has a structure that contains function pointer which is a callback for some event. Consider: // library code (.h file) typedef int ...
1
vote
3answers
53 views

function call with function pointer in c++

Here's the code: #include<iostream> using namespace std; typedef struct ptrs { int (*addptr)(int a, int b); }mems; int add(int a, int b) { int result = a+b; return result; } int ...
4
votes
2answers
151 views

Most vexing parse confusion

I'm studying C++11 and I stumbled upon uniform initializers. I don't understand the following code which should show the "most vexing parse" ambiguity: #include<iostream> class Timer { ...
0
votes
1answer
55 views

C++ Passing a member function as a callback

I am trying to create a very simple event system to be used in a game. I have a EventManager class that looks something like this: typedef std::function<void(IEvent* event)> CallbackType; ...
0
votes
0answers
33 views

Constuct name for assigning C functions like .pr_input = sctp_input [duplicate]

Can someone tell me the name for assigning functions like this in C - .pr_type = SOCK_SEQPACKET, .pr_domain = &inetdomain, .pr_protocol = IPPROTO_SCTP, .pr_flags ...
7
votes
4answers
148 views

Function pointer accepting argument

int (*ptr)(char (*ch)[]); What does the above declaration means? Does it mean ptr is pointer to a function that accepts an argument which is array of pointers to characters returning integer? How ...
1
vote
2answers
32 views

Retrieving function pointers from container

I think this will make more sense if I put the code first: I have a member variable defined as such: std::queue<void (*)()> fptrs; ...and am trying to pop a pointer back out of it like this: ...
0
votes
1answer
22 views

Changing function pointers after compilation

I am using Ogre3 to try to build a Spawner that automatically creates copies of an Enemy and drop them into the world. In addition to this, I want to save a behavior function so that when the entity ...
-3
votes
1answer
75 views

c++: Address will always evaluate to true error [closed]

I wrote my own atexit method, the problem is, everything passed in is 1. When I attempted to print the address before providing it to my atexit, the compiler generated the following warning: void ...
0
votes
2answers
47 views

Deleting allocated array within function vs in main

If I declare a allocated pointer inside main char *ch2=new char[10*17]; char *ch2p=ch2; while(infile.get(*ch2)) { cout<<*ch2; ch2++; } ................................. char ...
3
votes
1answer
35 views

Getting documentation from a function handle

Generically, if I have a function handle (but not the function name), is there a way to see the "help" comment block associated with that function?
2
votes
4answers
83 views

How to pass a pointer to a struct into a function using C Language?

i'm new to developing with c. sure enough there'd come a day i need your help. And I guess this time is now :) What I am trying to do: I am experimenting with MySQL Api in C. For that i wanted to use ...
2
votes
2answers
103 views

ScopedExit implementation: pass arguments to the function object

I'm trying to implement simple ScopedExit class. Here's the code: #include <iostream> #include <functional> template<class R, class... Args> class ScopedExit { public: ...
13
votes
3answers
341 views

Do function pointers need an ampersand

In C/C++, if I have a the following functions: void foo(); void bar(void (*funcPtr)()); Is there a difference between these two calls: bar(foo); bar(&foo); ?
2
votes
6answers
140 views

C++ member function pointer with different arguments - or is this bad anyway?

Even though I fear that you will tell me that this topic was covered several time, I dare to ask it, since I was not able to generate a solution. Probably I was just looking for the wrong thing... ...
0
votes
1answer
17 views

Allocated arrays in functions

Lets say you have this in main int* test; test = createArray(test); and this is function int * creatArray(int* temp) { temp = new int [35]; return temp } Why do you need to return the ...
1
vote
3answers
97 views

Functional programming in C/C++?

I have been reading this article: http://en.wikipedia.org/wiki/Function_pointer and am sort of confused. Since C/C++ support function pointers, doesn't that mean they support functional programming in ...
1
vote
1answer
28 views

Calling back into a native application from Java, via JNI

So I built this C library. It calls Java methods via the JNI, everything works fine. But how can I call back from Java into my C application? I imagine the following: I do have a function, I take its ...
1
vote
2answers
70 views

How do I use function pointers?

I have a problem with a function on a binary tree.The Tree houses client structs which among other thing, have an id number and a date field. I need to make 3 functions, 2 find_client functions , one ...
0
votes
3answers
92 views

Does “this” also adapt to function pointers?

Java has a construct that allows a method to call itself via a "this()" reference. The name of this convention escapes me at the moment. EDIT: Known as Constructor Delegation as pointed out below. ...
0
votes
1answer
37 views

Similar Objective-C KVO in c++

I have this architetture: I have a thread that continuously monitors the status of a shared variable. I would like to develop a system similar to Objective-C KVO in c++ . In practice, I would like to ...
5
votes
2answers
87 views

Function Pointer assignment works in C but not C++

I need to dynamically link to a library function at runtime in Mac OS X. Following Apple's example, I declare a function pointer and assign it with the result of dlsym(). The following example ...
0
votes
2answers
32 views

How do I create an unbound method for new in Ruby

I have this code: class Note < Struct.new :value def to_s value.to_s end def self.use_new(arg) Note.new arg end end class Chord def initialize(arr) @arr = arr end def ...
0
votes
2answers
62 views

pointer on method as an argument

To avoid code duplication, I'm tring to pass pointers to functions as arguments of a static method. I have a class (Geo) with only static methods. One of this methods (+++Geo::traceRay(+++)) sould ...
0
votes
1answer
69 views

How to understand function declaration like int (*func())[5] and int (&func())[5] in C [duplicate]

Could anyone give me some hint on how to understand these declarations in C programming. Are they some kind of function pointers?
-2
votes
1answer
44 views

Pass pointer to class function to GLUT

I have a class class App { private: float angle; public: App(); int OnExecute(); void OnLoop(); void OnRender(); bool OnInit(); void OnCleanup(); }; //In my cpp file: ...
2
votes
1answer
75 views

C++: Pointer to member function

I have this example code of using pointer to member function, which I want to change during runtime, but I cannot make it work. I've already tried this->*_currentPtr(4,5) (*this)._currentPtr(4, 5). ...
3
votes
4answers
84 views

function pointer to different functions with different arguments in C

I have two functions with variable number and types of arguments double my_func_one(double x, double a, double b, double c) { return x + a + b + c } double my_func_two(double x, double p[], double c) ...
0
votes
1answer
65 views

Redefine function pointer

converter.h is inside a library that is used in many different projects. In one, containing mod_converter.h, I'd like to modify fooToString(). But compiling the latter project gives me an error. I'm ...
1
vote
2answers
61 views

Typedef expecting ';' before “”

(Don't bust my nuts about using std::auto_ptr<>, this isn't my code, it's auto-generated. I'm just trying to interface to it.) I have a function with the following signature: ...
5
votes
5answers
139 views

Function pointer runs faster than inline function. Why?

I ran a benchmark of mine on my computer (Intel i3-3220 @ 3.3GHz, Fedora 18), and got very unexpected results. A function pointer was actually a bit faster than an inline function. Code: #include ...
0
votes
1answer
58 views

How to fill and access to std::map<std::pair<enum1, enum2>, funcPtr>?

I would like to know how to fill this type of map and mainly the way to access to the function pointer. The map : enum enum1 { val11, val12, val13 }; enum enum2 { val21, val22, ...
0
votes
2answers
68 views

C++ Passing pointer to function

OK i have a function int main { .... char *wordl=word();//wordl pointer is an array of characters ... gamewindow(wordl,length); } void gamewindow(char &wordl,int length); My ...
10
votes
9answers
522 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
128 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
121 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
68 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 ...

1 2 3 4 5 27