Function pointers

by math_explorer, Aug 16, 2012, 9:43 AM

#include <cstdio>
using namespace std;
int troll(int x){ return x + 1; }
 
int main(){
    int (*f)(int) = troll;
    printf("%d\n", (*f)(2));
    printf("%d\n", f(3));
}
 

So basically, to define a function pointer variable or whatever the correct term is, you pretend you're writing a function declaration without the argument names and body, and you replace the function name with (*something). The function pointer and the function it's being assigned have to have the exact same signature and return value.

To invoke the function, you can explicitly dereference it as in line 7 or, on most recent compilers, just pretend it's a function as in line 8.

Functions with a return type of void
void a() {}

return nothing. The compiler will get mad at you if you do something silly like
int x = a();

fp.cpp: In function ‘int main()’:
fp.cpp:11: error: void value not ignored as it ought to be


"void" is not a type that a variable can hold either.
void x;


fp.cpp: In function ‘int main()’:
fp.cpp:11: error: variable or field ‘x’ declared void


But you knew that already, right?

On the other hand, "void*" is a pointer to anything... so you can do extremely questionable things like

int x = 1;
char y[20] = "windmill";
FILE* hi = stdout;
 
void* p = &x;
printf("%d\n", *((int*)p));
p = y;
printf("%s\n", ((char*)p));
p = stdout;
fprintf((FILE*) p, "\"\"\"\"\"\n");


The question is, of course,
Why would anybody ever want to do that???

Mainly, this function in <cstdlib>.
qsort(void* base, size_t num, size_t size,
    int ( * comparator ) ( const void *, const void * ) );

Of course you'd probably use STL containers and algorithms if you're actually using C++, and while they still do need function pointers, their templates give you some type safety, so the second part of this post is being rather silly if you're not using C.

Also:

#include <vector>
vector<vector<int> > v;
// MANDATORY SPACE^
This post has been edited 1 time. Last edited by math_explorer, Dec 6, 2012, 10:08 AM

Comment

3 Comments

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Shoot why C

Is function pointer like variable function in PHP?

 
function foo() {
return "trololol";
}
 
$bar = "foo";
echo $bar();
 


(will output "trololol")

Because I don't understand the stuff you wrote.

by chaotic_iak, Aug 16, 2012, 4:51 PM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
Shoot why PHP

They appear to be similar, but in PHP, your $bar holds a string which is the function name and is looked up on-the-fly, while C/C++ pointers actually point to the function itself (?). I think assigning a closure/anonymous function to a variable would be closer to the spirit.

by math_explorer, Aug 17, 2012, 4:32 AM

The post below has been deleted. Click to close.
This post has been deleted. Click here to see post.
*insert reasons to make PHP appears better than C/C++*

Uh something like

 
function foo($str) {
echo $str;
}
 


?

Okay I get the idea. Although I don't get how it can be useful, and I don't understand your 7th-9th code tags.

by chaotic_iak, Aug 17, 2012, 4:36 PM

♪ i just hope you understand / sometimes the clothes do not make the man ♫ // https://beta.vero.site/

avatar

math_explorer
Archives
+ September 2019
+ February 2018
+ December 2017
+ September 2017
+ July 2017
+ March 2017
+ January 2017
+ November 2016
+ October 2016
+ August 2016
+ February 2016
+ January 2016
+ September 2015
+ July 2015
+ June 2015
+ January 2015
+ July 2014
+ June 2014
inv
+ April 2014
+ December 2013
+ November 2013
+ September 2013
+ February 2013
+ April 2012
Shouts
Submit
  • how do you have so many posts

    by krithikrokcs, Jul 14, 2023, 6:20 PM

  • lol⠀⠀⠀⠀⠀

    by math_explorer, Jan 20, 2021, 8:43 AM

  • woah ancient blog

    by suvamkonar, Jan 20, 2021, 4:14 AM

  • https://artofproblemsolving.com/community/c47h361466

    by math_explorer, Jun 10, 2020, 1:20 AM

  • when did the first greed control game start?

    by piphi, May 30, 2020, 1:08 AM

  • ok..........

    by asdf334, Sep 10, 2019, 3:48 PM

  • There is one existing way to obtain contributorship documented on this blog. See if you can find it.

    by math_explorer, Sep 10, 2019, 2:03 PM

  • SO MANY VIEWS!!!
    PLEASE CONTRIB
    :)

    by asdf334, Sep 10, 2019, 1:58 PM

  • Hullo bye

    by AnArtist, Jan 15, 2019, 8:59 AM

  • Hullo bye

    by tastymath75025, Nov 22, 2018, 9:08 PM

  • Hullo bye

    by Kayak, Jul 22, 2018, 1:29 PM

  • It's sad; the blog is still active but not really ;-;

    by GeneralCobra19, Sep 21, 2017, 1:09 AM

  • dope css

    by zxcv1337, Mar 27, 2017, 4:44 AM

  • nice blog ^_^

    by chezbgone, Mar 28, 2016, 5:18 AM

  • shouts make blogs happier

    by briantix, Mar 18, 2016, 9:58 PM

91 shouts
Contributors
Tags
About Owner
  • Posts: 583
  • Joined: Dec 16, 2006
Blog Stats
  • Blog created: May 17, 2010
  • Total entries: 327
  • Total visits: 354386
  • Total comments: 368
Search Blog
a