472,364 Members | 1,789 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,364 software developers and data experts.

How to create an initialise pointer to pointer to function variable;

HI,

I have a function as

void f(int p)
{
return p++;
}

now I have created a function pointer as
void(**pf)(int);

and initialization as
*pf=f;

but compiler gives error...

Why ?

a.a.cpp

Jul 23 '05 #1
9 2407
* iceColdFire:

I have a function as

void f(int p)
{
return p++;
}
First, you cannot return non-void when the function is declared
as returning void.

Second, with 'void' changed to 'int', that has the same final effect as

int f( int p )
{
return p;
}

You might want to take a look at

<url: http://home.no.net/dubjai/win32cpptut/html/w32cpptut_01_02_11.html>

for other reasons why you should avoid postfix increment and decrement.

now I have created a function pointer as
void(**pf)(int);

and initialization as
*pf=f;

but compiler gives error...


The compiler shouldn't flag _that_ as an error, but a good compiler will
warn you that you're derefencing an uninitialized pointer.

Possibly what you wanted was

int (*pf)(int) = f;

However, as a beginner try to avoid using pointers directly. In this case
you would probably (here I'm guessing, but probably) be much better served
by using a virtual member function instead. Try to read up on that.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 23 '05 #2
Hi Alf::

Well...that was great explanaiton indeed...however I need to use
pointer to pointer to function as

int(**pf)(int);

Now thing is how do I initialise the variable pf with f, and is my
variable declaration correct for (pointer to (pointer to function))

Thanks,
a.a.cpp

Jul 23 '05 #3
* iceColdFire:

Well...that was great explanaiton indeed...however I need to use
pointer to pointer to function as

int(**pf)(int);

Now thing is how do I initialise the variable pf with f
int (*pf)(int) = f;
int (**ppf)(int) = &pf;
and is my
variable declaration correct for (pointer to (pointer to function))


I think so (modulo bad eyesight & auto filtering of on-screen text).

But if you'd describe what you're trying to achieve instead of how you're
intending to implement part of the solution, I'm reasonably sure that I or
someone else can tell you how to do that much more safely and easily via
virtual member functions -- or perhaps templates, or whatever.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 23 '05 #4
"iceColdFire" <ic*******@yahoo.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com
Hi Alf::

Well...that was great explanaiton indeed...however I need to use
pointer to pointer to function as

int(**pf)(int);

Now thing is how do I initialise the variable pf with f, and is my
variable declaration correct for (pointer to (pointer to function))

Thanks,
a.a.cpp

An alternative to Alf's scheme that is closer to your original is as follow:

// pointer to function
int(*pf)(int);

// pointer to pointer to function
int(**ppf)(int);

int main()
{
//initialise double pointer to point to single pointer
ppf=&pf;
// use double pointer to initialise single pointer
*ppf = &f;
// call function from double pointer
int x = (**ppf)(5);
return 0;
}

Note that the & in

*ppf = &f;

is optional as is one of the asterisks in

int x = (**ppf)(5);

but it is more logical to include them (if working with pointers to member
functions, then you must include them --- you don't get a choice).
--
John Carson

Jul 23 '05 #5
::Alf

Allright,
That was nice and neat...can we initialize ppf with f instead of
initialising with pf...

And here is the explanation, I intend to build an array of pointer to
pointer to functions which shall be used in a module for runtime
function reference...I am avoiding using templates and virtual member
functions, as what I have as resource is just the function addresses
and not the code...
so I can only use pointers to build up the entire system....

Thanks,
a.a.cpp

Jul 23 '05 #6
::John,,,thanks for the nice explanation...
Check my last posting for what I actually intend to build..

a.a.cpp

Jul 23 '05 #7
On 2005-05-23, iceColdFire <ic*******@yahoo.com> wrote:
::Alf

Allright,
That was nice and neat...can we initialize ppf with f instead of
initialising with pf...

And here is the explanation, I intend to build an array of pointer to
pointer to functions which shall be used in a module for runtime
function reference...
Yes, fine -- but why do you need pointer to (pointer to functions) ? Why is
a pointer to function not good enough ?

Or do you mean that you want to create a dynamic array of pointer-to-functions
and the type of that dynamic array is pointer to (pointer to function) ?
I am avoiding using templates and virtual member
functions, as what I have as resource is just the function addresses
and not the code...


You can wrap a function pointer in a function object (for example). Most of the
solutions that would be suggested do not require you to have access to the source
code for your functions.

Cheers,
--
Donovan Rebbechi
http://pegasus.rutgers.edu/~elflord/
Jul 23 '05 #8
::Donovan,
Yup !!!.

I intend to build a dynamic array of [......]
Also I liked your wrapping idea ...means wrapping a function pointer
into a function object...
But how do you do that....do you have any related docs for the trick..

Thanks,...
a.a.cpp

Jul 23 '05 #9
"iceColdFire" <ic*******@yahoo.com> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com
John,,,thanks for the nice explanation...

Check my last posting for what I actually intend to build..


If you want a dynamic array of function pointers, then you can build it with
new or with vector or...

With vector, you can just go:

// creates a 10 element vector of function pointers
std::vector<int(*)(int)> vec(10);

//Then you can set

vec[0] = &f;

// and so on. You would call the function from
// the first vector element as follows:

int y = (*vec[0])(7);

Naturally, you can expand the size of the vector using push_back or various
other member functions.

--
John Carson

Jul 23 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
by: Yu | last post by:
I have found that the static object is initialised at the time when the shared libary is loaded. The initialisation caused the invocation of the constructor. May I know of any way that I can...
7
by: dog | last post by:
I've seen plenty of articles on this topic but none of them have been able to solve my problem. I am working with an Access 97 database on an NT4.0 machine, which has many Access reports. I...
6
by: Stuart Norris | last post by:
Dear Readers, I am attempting to initialise a struct contiaing a dynamic character string. In the example below I am trying to initialise the name field so that my struct does not waste space. ...
52
by: Douglas Garstang | last post by:
I can't believe I've been trying to work this out for hours now, and I can't believe I couldn't find someone asking for a similar solution in the newsgroups. No wonder I hate C so much, and every...
2
by: Tomás | last post by:
Up until lately I've been writing all mad kinds of code for accomplishing things, but lately I've decided to lean more toward the whole readability, etc. side of things. I have a command line...
27
by: Erik de Castro Lopo | last post by:
Hi all, The GNU C compiler allows a void pointer to be incremented and the behaviour is equivalent to incrementing a char pointer. Is this legal C99 or is this a GNU C extention? Thanks in...
51
by: Kuku | last post by:
What is the difference between a reference and a pointer?
23
by: sandy | last post by:
I need (okay, I want) to make a dynamic array of my class 'Directory', within my class Directory (Can you already smell disaster?) Each Directory can have subdirectories so I thought to put these...
4
by: etuncer | last post by:
Hello All, I have Access 2003, and am trying to build a database for my small company. I want to be able to create a word document based on the data entered through a form. the real question is...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.