Re: inline virtual functions
On Jul 3, 11:16 pm, "Alf P. Steinbach" <a...@start.no> wrote:
* Stuart Redmann:
BTW, inline and virtual don't go together. As I recall, compilers may
even issue a warning if you try to inline virtual methods.
'inline' and 'virtual' are very compatible. A compiler that issues any
diagnostic on the combination is trash, probably pre-standard. Use
decent compilers.
I'll go even further, and say that there are two cases where I
regularly inline virtual functions, and I've never seen a
warning about it.
The first is the virtual destructor of an "interface", e.g.:
class Interface
{
public:
virtual ~Interface() {}
// Only pure virtual functions...
} ;
Since the destructor is the only function which has an
"implementation", it seems a shame to have to create a source
file just for it. (And of course, the destructor never will be
called virtually, since instances of the class can't exist.)
The second is when the concrete instance of an interface is
created by a factory function, with a different function for
each type. In such cases, the simplest solution is to define
the derived class in the factory function, and C++ requires all
functions in a local class to be defined in the class
definition, which means that they are "inline"; in this case, of
course, the function will never, ever actually be inlined.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34