Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Other than boost (Bind & Function), how can I dynamically call a function in C++?

PHP has:

$obj = new MyObject();
$function = 'doSomething';
$obj->$function();

Objective-C has:

MyObject *obj = [[MyObject alloc] init];
SEL function = NSSelectorFromString(@"doSomething");
[obj performSelector: function];
share|improve this question

4 Answers

up vote 1 down vote accepted

If those functions you are interested in are of same type, you could create map of strings and function pointers.

share|improve this answer
That would mean I need to keep the list up to date. I'm looking for more automatic. – joels Jan 19 '12 at 5:35
You could use some program to generate it (maybe even ctags with a bit of sed at the end) – stralep Jan 19 '12 at 5:41

You can export necessary functions (e.g by marking them with __dllexport) and use GetProcAddress or dlsym (depending on your platform) for getting their address:


void *handle = dlsym(0, RTLD_LOCAL | RTLD_LAZY);
FunctionType *fptr = (FunctionType *)dlsym(handle, "doSomething");
fptr();


HANDLE handle = GetCurrentProcess();
FunctionType *fptr = (FunctionType *)GetProcAddress(handle, "doSomething");
fptr();

All of this is platform-specific though and there is no standard way in C++ for doing this.

share|improve this answer
1  
Can't complain, that is a good answer. However I'll point out it's great for dynamic calls to C functions, and not going to work for polymorphic C++ method calls. – Graham Perks Jan 19 '12 at 14:51
@GrahamPerks: well, it will just be even more platform-specific with such things like mangling, adjusting object pointers and like, but not entirely impossible. Although, I doubt I will ever do such thing in production environment. – Konstantin Oznobihin Jan 19 '12 at 15:36

The simple answer is, you can't. C++ doesn't do method look up by name.

share|improve this answer

If I understood your question properly, you can make use of function pointer (or pointer to member) in C++. You can dynamically decide which function call (you may need a prototype of the same) and call it dynamically. See this link

http://www.parashift.com/c++-faq-lite/pointers-to-members.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.