C++ Function Pointers
From: chetan (rolf21_at_indiatimes.com)
Date: 10/31/04
- Next message: John Harrison: "Re: C++ Function Pointers"
- Previous message: Alex Drummond: "Re: C++ sucks for games"
- Next in thread: John Harrison: "Re: C++ Function Pointers"
- Reply: John Harrison: "Re: C++ Function Pointers"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 31 Oct 2004 07:01:57 -0800
How to initialise a function pointer for any particular function in
C++ ?
so that it would clearly specify difference between the functions that
are called by different objects of that class ...
i.e
instead of
a.function();
or
b.function();
use of this -->
int (*funcptr)(void); ???? How ?
- Next message: John Harrison: "Re: C++ Function Pointers"
- Previous message: Alex Drummond: "Re: C++ sucks for games"
- Next in thread: John Harrison: "Re: C++ Function Pointers"
- Reply: John Harrison: "Re: C++ Function Pointers"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|