473,383 Members | 1,862 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 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 2499
* 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...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.