473,385 Members | 1,769 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,385 software developers and data experts.

Override public virtual Functions with private Functions?

Hello All

I have a base class called Action_Request, and a set of classes
corresponding to different kinds of Action_Request, each of which inherits
from Action_Request. Eg:-

class Add_Molecule_Req: public Action_Request{
// ......
};

I manipulate the various derived classes polymorphically through
Action_Requests's public interface, using its virtual functions.
Currently the overriding functions in the derived classes (including the
destructor, which overrides Action_Request's virtual destructor), are
declared public.

My program compiles if I make them private, and doing this would seem to
have the advantage that these functions must then always be invoked
polymorphically through Action_Request's public interface, which is what I
want.

My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #1
23 2600
Chris Gordon-Smith <us*********@my.homepagewrote:
I have a base class called Action_Request, and a set of classes
corresponding to different kinds of Action_Request, each of which inherits
from Action_Request. Eg:-

class Add_Molecule_Req: public Action_Request{
// ......
};

I manipulate the various derived classes polymorphically through
Action_Requests's public interface, using its virtual functions.
Currently the overriding functions in the derived classes (including the
destructor, which overrides Action_Request's virtual destructor), are
declared public.

My program compiles if I make them private, and doing this would seem to
have the advantage that these functions must then always be invoked
polymorphically through Action_Request's public interface, which is what I
want.

My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?
I tend to follow the guideline, "make it private if you can, public if
you must." I consider such code "good practice".

The only disadvantage is that someone with a object of some
ActionRequest sub-class will have to up-cast the object.
Jun 27 '08 #2
Chris Gordon-Smith wrote:
My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?
In general you should separate interface (the public API the base class
provides) from configurability (the overriding feature). This is also
called the Template Method Pattern and is described in detail here:
http://www.gotw.ca/publications/mill18.htm

--
Dizzy

Jun 27 '08 #3
Daniel T. wrote:
Chris Gordon-Smith <us*********@my.homepagewrote:
>I have a base class called Action_Request, and a set of classes
corresponding to different kinds of Action_Request, each of which
inherits from Action_Request. Eg:-

class Add_Molecule_Req: public Action_Request{
// ......
};

I manipulate the various derived classes polymorphically through
Action_Requests's public interface, using its virtual functions.
Currently the overriding functions in the derived classes (including the
destructor, which overrides Action_Request's virtual destructor), are
declared public.

My program compiles if I make them private, and doing this would seem to
have the advantage that these functions must then always be invoked
polymorphically through Action_Request's public interface, which is what
I want.

My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?

I tend to follow the guideline, "make it private if you can, public if
you must." I consider such code "good practice".
Sounds sensible to me. What I hadn't appreciated (because I hadn't really
thought about it), is that private methods in derived class can override
public methods in the base.
The only disadvantage is that someone with a object of some
ActionRequest sub-class will have to up-cast the object.
In my case that is not a problem, because manipulation should only ever take
place through the base. If I ever attempt manipulation through a derived
class pointer I will get a compiler error. Upcasting would be possible, but
would be working against my basic design principle.

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #4
On May 26, 2:56 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
I have a base class called Action_Request, and a set of
classes corresponding to different kinds of Action_Request,
each of which inherits from Action_Request. Eg:-
class Add_Molecule_Req: public Action_Request{
// ......
};
I manipulate the various derived classes polymorphically
through Action_Requests's public interface, using its virtual
functions. Currently the overriding functions in the derived
classes (including the destructor, which overrides
Action_Request's virtual destructor), are declared public.
My program compiles if I make them private, and doing this
would seem to have the advantage that these functions must
then always be invoked polymorphically through
Action_Request's public interface, which is what I want.
My questions are:-
i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?
It's more a style issue than anything else. My personal
guidelines are to never change the access of a virtual function
in the derived class, since I find it confusing that the same
function has different access depending on the static type used
to access it. The disadvantage that I see is that someone
working on the derived class, later, may think that the
functions in question cannot be called from outside the class.
And of course, making them private does sort of violate the LSP:
if I have a Derived, I can't call them, although I could if I
had a Base.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #5
dizzy wrote:
Chris Gordon-Smith wrote:
>My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?

In general you should separate interface (the public API the base class
provides) from configurability (the overriding feature). This is also
called the Template Method Pattern and is described in detail here:
http://www.gotw.ca/publications/mill18.htm
Interesting article. It says that in some cases the destructor should be
made protected. I have never thought about it before, and it made me
wonder why would anyone make the destructor private or protected.
So, the question is what are uses of such destructor?
Jun 27 '08 #6
anon wrote:
dizzy wrote:
>Chris Gordon-Smith wrote:
>>My questions are:-

i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?

In general you should separate interface (the public API the base class
provides) from configurability (the overriding feature). This is also
called the Template Method Pattern and is described in detail here:
http://www.gotw.ca/publications/mill18.htm

Interesting article. It says that in some cases the destructor should be
made protected. I have never thought about it before, and it made me
wonder why would anyone make the destructor private or protected.
So, the question is what are uses of such destructor?
Considering a class wrapping only static function as helper or factory
function, we should make the dtor private not to allow any instance.

We can also make the dtor private and with a static function "destroy"
to allow instance created only by new (no stack allocation)

making the dtor protected, then child class publicly/protectedly
derived from from still has access to it. at this time, you can never
delete a pointer to the base class.

--
Best Regards
Barry
Jun 27 '08 #7
On May 27, 10:29 am, anon <a...@no.nowrote:
dizzy wrote:
Interesting article. It says that in some cases the destructor
should be made protected. I have never thought about it
before, and it made me wonder why would anyone make the
destructor private or protected. So, the question is what are
uses of such destructor?
If the destructor is protected or private, you cannot allocate
static or automatic instances of the type, and you cannot call
delete on pointers to the type. In client code; you can still
do pretty much anything you want in the implementation of the
class itself.

Private destructors might make sense if the class itself
controls its lifetime: the only time it should be destructed is
in response to some external event (in which case, it does a
delete this). This is often the case for entity classes, for
example.

Protected destructors make a lot of sense for classes which are
designed to be used as base classes (and only as base classes),
but which don't have a virtual destructor. Classes like
std::iterator<>, for example.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #8
James Kanze wrote:
On May 26, 2:56 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
>I have a base class called Action_Request, and a set of
classes corresponding to different kinds of Action_Request,
each of which inherits from Action_Request. Eg:-
>class Add_Molecule_Req: public Action_Request{
// ......
};
>I manipulate the various derived classes polymorphically
through Action_Requests's public interface, using its virtual
functions. Currently the overriding functions in the derived
classes (including the destructor, which overrides
Action_Request's virtual destructor), are declared public.
>My program compiles if I make them private, and doing this
would seem to have the advantage that these functions must
then always be invoked polymorphically through
Action_Request's public interface, which is what I want.
>My questions are:-
>i) Is overriding public virtual functions with private functions good
practice?
ii) Are there any disadvantages?

It's more a style issue than anything else. My personal
guidelines are to never change the access of a virtual function
in the derived class, since I find it confusing that the same
function has different access depending on the static type used
to access it. The disadvantage that I see is that someone
working on the derived class, later, may think that the
functions in question cannot be called from outside the class.
And of course, making them private does sort of violate the LSP:
if I have a Derived, I can't call them, although I could if I
had a Base.
Thanks for this - interesting. As I understand it, the Liskov Substitution
Principle (LSP) is about maintaining the "is a" relationship between the
derived class and the base class. What I am trying to do is to use the base
class to provide a common interface to a set of classes that can be used
polymorphically. Does the LSP apply in this case?

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #9
James Kanze <ja*********@gmail.comwrote:
Chris Gordon-Smith <use.addr...@my.homepagewrote:
My questions are:-

i) Is overriding public virtual functions with private functions
good practice?
ii) Are there any disadvantages?

It's more a style issue than anything else. My personal guidelines
are to never change the access of a virtual function in the derived
class, since I find it confusing that the same function has
different access depending on the static type used to access it.
That's true.
The disadvantage that I see is that someone working on the derived
class, later, may think that the functions in question cannot be
called from outside the class.
Which is exactly what the OP wants them to think. :-)

Thinking about it, the OP might be better off if he made the base class
member-function private and provide a specialized interface for those
who are allowed to call it.
Jun 27 '08 #10
Chris Gordon-Smith <us*********@my.homepagewrote:
James Kanze wrote:
Chris Gordon-Smith <use.addr...@my.homepagewrote:
My questions are:-
>
i) Is overriding public virtual functions with private
functions good practice?
ii) Are there any disadvantages?
... making them private does sort of violate the LSP: if I have a
Derived, I can't call them, although I could if I had a Base.

As I understand it, the Liskov Substitution Principle (LSP) is
about maintaining the "is a" relationship between the derived class
and the base class.
Note that James said it "sort of" violated the LSP, in actual fact it
doesn't violate the LSP at all. Although this isn't a mark against it,
it is also not a mark for it. :-)

Something to think about. If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily be
an error?
Jun 27 '08 #11
Daniel T. wrote:
Chris Gordon-Smith <us*********@my.homepagewrote:
>James Kanze wrote:
Chris Gordon-Smith <use.addr...@my.homepagewrote:
My questions are:-

i) Is overriding public virtual functions with private
functions good practice?
ii) Are there any disadvantages?

... making them private does sort of violate the LSP: if I have a
Derived, I can't call them, although I could if I had a Base.

As I understand it, the Liskov Substitution Principle (LSP) is
about maintaining the "is a" relationship between the derived class
and the base class.

Note that James said it "sort of" violated the LSP, in actual fact it
doesn't violate the LSP at all. Although this isn't a mark against it,
it is also not a mark for it. :-)

Something to think about. If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily be
an error?
I don't think I would call it an error, but it would not be how I intend the
class to be used. The code that uses my class is now more complex, because
sometimes it uses the base class interface directly, and sometimes uses it
by up-casting.

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #12
On May 27, 8:56*am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily be
an error?

I don't think I would call it an error, but it would not be how I intend the
class to be used. The code that uses my class is now more complex, because
sometimes it uses the base class interface directly, and sometimes uses it
by up-casting.
That latter comment is a strong reason to go ahead and make the member-
function public in the derived class.
Jun 27 '08 #13
Daniel T. wrote:
On May 27, 8:56Â*am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
>Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily be
an error?

I don't think I would call it an error, but it would not be how I intend
the class to be used. The code that uses my class is now more complex,
because sometimes it uses the base class interface directly, and
sometimes uses it by up-casting.

That latter comment is a strong reason to go ahead and make the member-
function public in the derived class.
Not really. The fact that up-casting would be necessary is a strong
indication that the class is not intended to be used in this way. By only
using the base class interface we keep the calling code simple and avoid
any up-casting.

Chris Gordon-Smith
www.simsoup.info

Jun 27 '08 #14
Chris Gordon-Smith wrote:
Daniel T. wrote:
>On May 27, 8:56 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
>>Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily be
an error?
I don't think I would call it an error, but it would not be how I intend
the class to be used. The code that uses my class is now more complex,
because sometimes it uses the base class interface directly, and
sometimes uses it by up-casting.
That latter comment is a strong reason to go ahead and make the member-
function public in the derived class.

Not really. The fact that up-casting would be necessary is a strong
indication that the class is not intended to be used in this way. By only
using the base class interface we keep the calling code simple and avoid
any up-casting.

Chris Gordon-Smith
www.simsoup.info
The real question is, why don't you want people to call
Derived->baseMethod()? What harm comes from it, and what benefit comes
from preventing it?

Polymorphic methods work the same whether you have a pointer/reference
to a Base or Derived class. That's *why* they are virtual.
--
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Jun 27 '08 #15
Daniel Pitts wrote:
Chris Gordon-Smith wrote:
>Daniel T. wrote:
>>On May 27, 8:56 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily
be an error?
I don't think I would call it an error, but it would not be how I
intend the class to be used. The code that uses my class is now more
complex, because sometimes it uses the base class interface directly,
and sometimes uses it by up-casting.
That latter comment is a strong reason to go ahead and make the member-
function public in the derived class.

Not really. The fact that up-casting would be necessary is a strong
indication that the class is not intended to be used in this way. By only
using the base class interface we keep the calling code simple and avoid
any up-casting.

Chris Gordon-Smith
www.simsoup.info
The real question is, why don't you want people to call
Derived->baseMethod()? What harm comes from it, and what benefit comes
from preventing it?
The benefit is standardisation and simplification. The base and its derived
classes are designed to be used polymorphically in a standard way through
the base class's interface. Using the interfaces of the various derived
classes would go against this and increase overall complexity and introduce
the possibility of error. If the classes are used in the way intended,
there is no need to call using the derived class's interface.
>
Polymorphic methods work the same whether you have a pointer/reference
to a Base or Derived class. That's *why* they are virtual.

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #16
On May 27, 1:59 pm, "Daniel T." <danie...@earthlink.netwrote:
Chris Gordon-Smith <use.addr...@my.homepagewrote:
James Kanze wrote:
Chris Gordon-Smith <use.addr...@my.homepagewrote:
My questions are:-
i) Is overriding public virtual functions with private
functions good practice?
ii) Are there any disadvantages?
... making them private does sort of violate the LSP: if I have a
Derived, I can't call them, although I could if I had a Base.
As I understand it, the Liskov Substitution Principle (LSP) is
about maintaining the "is a" relationship between the derived class
and the base class.
Note that James said it "sort of" violated the LSP, in actual fact it
doesn't violate the LSP at all. Although this isn't a mark against it,
it is also not a mark for it. :-)
It depends on how you consider the LSP. It most definitely
violates the usual understanding of LSP. Typically, in C++,
this violation won't be visible, since client code expecting a
Base will take a Base* or a Base&, and won't see the fact that
the functions are private in the derived class. It might become
visible, however, in the presense of templates.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #17
On May 28, 2:01 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
Daniel Pitts wrote:
Chris Gordon-Smith wrote:
Daniel T. wrote:
>On May 27, 8:56 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that necessarily
be an error?
I don't think I would call it an error, but it would not be how I
intend the class to be used. The code that uses my class is now more
complex, because sometimes it uses the base class interface directly,
and sometimes uses it by up-casting.
That latter comment is a strong reason to go ahead and make the member-
function public in the derived class.
Not really. The fact that up-casting would be necessary is a strong
indication that the class is not intended to be used in this way. By only
using the base class interface we keep the calling code simple and avoid
any up-casting.
Chris Gordon-Smith
www.simsoup.info
The real question is, why don't you want people to call
Derived->baseMethod()? What harm comes from it, and what benefit comes
from preventing it?
The benefit is standardisation and simplification. The base
and its derived classes are designed to be used
polymorphically in a standard way through the base class's
interface.
One of the characteristics of inheritance is normally that the
Base class' interface is part of the derived class' interface,
i.e. if I have something like:

struct Base { void f() ; } ;
struct Derived : Base { void g() ; } ;

then the "interface" defined by Derived includes both f() and
g().

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #18
James Kanze wrote:
On May 28, 2:01 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
>Daniel Pitts wrote:
Chris Gordon-Smith wrote:
Daniel T. wrote:
>>On May 27, 8:56 am, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
Daniel T. wrote:
If some user of the derived class does up-cast
and then call the base class member-function, would that
necessarily be an error?
I don't think I would call it an error, but it would not be how I
intend the class to be used. The code that uses my class is now more
complex, because sometimes it uses the base class interface
directly, and sometimes uses it by up-casting.
That latter comment is a strong reason to go ahead and make the
member- function public in the derived class.
>Not really. The fact that up-casting would be necessary is a strong
indication that the class is not intended to be used in this way. By
only using the base class interface we keep the calling code simple
and avoid any up-casting.
>Chris Gordon-Smith
www.simsoup.info
The real question is, why don't you want people to call
Derived->baseMethod()? What harm comes from it, and what benefit comes
from preventing it?
>The benefit is standardisation and simplification. The base
and its derived classes are designed to be used
polymorphically in a standard way through the base class's
interface.

One of the characteristics of inheritance is normally that the
Base class' interface is part of the derived class' interface,
i.e. if I have something like:

struct Base { void f() ; } ;
struct Derived : Base { void g() ; } ;

then the "interface" defined by Derived includes both f() and
g().
True enough. In the case of my Action_Requests however, I don't want to use
the derived class' interface. I always want to call polymorphically through
the base interface.

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #19
On May 28, 6:13 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
James Kanze wrote:
[...]
True enough. In the case of my Action_Requests however, I
don't want to use the derived class' interface. I always want
to call polymorphically through the base interface.
In that case, you probably also want a factory which returns the
actual instances, so that the client code doesn't even know that
the derived classes exist. (And of course, in that case,
whether the virtual functions are public or are private in the
derived class really doesn't matter, since the client code
doesn't have access to the derived class definition.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jun 27 '08 #20
On May 28, 9:12 pm, James Kanze <james.ka...@gmail.comwrote:
On May 28, 6:13 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
James Kanze wrote:

[...]
True enough. In the case of my Action_Requests however, I
don't want to use the derived class' interface. I always want
to call polymorphically through the base interface.

In that case, you probably also want a factory which returns the
actual instances, so that the client code doesn't even know that
the derived classes exist. (And of course, in that case,
whether the virtual functions are public or are private in the
derived class really doesn't matter, since the client code
doesn't have access to the derived class definition.)
Yes. I have something like this. I make objects of the derived class
by reading input from a file. Depending on the kind of 'request' in
the file. I make an object of the appropriate derived class. Once this
has been done, nothing in the client code that manipulates the objects
knows about the derived classes.

(Hope this posting gets through OK. I can't get onto my news server at
the moment and so have had to go onto Google groups.)

Chris Gordon-Smith
www.simsoup.info

Jun 27 '08 #21
Chris Gordon-Smith wrote:
On May 28, 9:12 pm, James Kanze <james.ka...@gmail.comwrote:
>On May 28, 6:13 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:
>>James Kanze wrote:
[...]
>>True enough. In the case of my Action_Requests however, I
don't want to use the derived class' interface. I always want
to call polymorphically through the base interface.
In that case, you probably also want a factory which returns the
actual instances, so that the client code doesn't even know that
the derived classes exist. (And of course, in that case,
whether the virtual functions are public or are private in the
derived class really doesn't matter, since the client code
doesn't have access to the derived class definition.)

Yes. I have something like this. I make objects of the derived class
by reading input from a file. Depending on the kind of 'request' in
the file. I make an object of the appropriate derived class. Once this
has been done, nothing in the client code that manipulates the objects
knows about the derived classes.

(Hope this posting gets through OK. I can't get onto my news server at
the moment and so have had to go onto Google groups.)

Chris Gordon-Smith
www.simsoup.info
If you want to "hide" the implementation classes from client code, put
them into a anonymous namespace. That way, they can't ever access the
symbols that represent them, and they can only ever have access to your
instance through base class pointers or references.

--
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Jun 27 '08 #22
Daniel Pitts wrote:
Chris Gordon-Smith wrote:
>On May 28, 9:12 pm, James Kanze <james.ka...@gmail.comwrote:
>>On May 28, 6:13 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:

James Kanze wrote:
[...]

True enough. In the case of my Action_Requests however, I
don't want to use the derived class' interface. I always want
to call polymorphically through the base interface.
In that case, you probably also want a factory which returns the
actual instances, so that the client code doesn't even know that
the derived classes exist. (And of course, in that case,
whether the virtual functions are public or are private in the
derived class really doesn't matter, since the client code
doesn't have access to the derived class definition.)

Yes. I have something like this. I make objects of the derived class
by reading input from a file. Depending on the kind of 'request' in
the file. I make an object of the appropriate derived class. Once this
has been done, nothing in the client code that manipulates the objects
knows about the derived classes.

(Hope this posting gets through OK. I can't get onto my news server at
the moment and so have had to go onto Google groups.)

Chris Gordon-Smith
www.simsoup.info
If you want to "hide" the implementation classes from client code, put
them into a anonymous namespace. That way, they can't ever access the
symbols that represent them, and they can only ever have access to your
instance through base class pointers or references.
Interesting. I just tried that, but now unfortunately my program won't link
because my factory class can't see the derived class' constructor.

Chris Gordon-Smith
www.simsoup.info
Jun 27 '08 #23
Chris Gordon-Smith wrote:
Daniel Pitts wrote:
>Chris Gordon-Smith wrote:
>>On May 28, 9:12 pm, James Kanze <james.ka...@gmail.comwrote:
On May 28, 6:13 pm, Chris Gordon-Smith <use.addr...@my.homepage>
wrote:

James Kanze wrote:
[...]

True enough. In the case of my Action_Requests however, I
don't want to use the derived class' interface. I always want
to call polymorphically through the base interface.
In that case, you probably also want a factory which returns the
actual instances, so that the client code doesn't even know that
the derived classes exist. (And of course, in that case,
whether the virtual functions are public or are private in the
derived class really doesn't matter, since the client code
doesn't have access to the derived class definition.)

Yes. I have something like this. I make objects of the derived class
by reading input from a file. Depending on the kind of 'request' in
the file. I make an object of the appropriate derived class. Once this
has been done, nothing in the client code that manipulates the objects
knows about the derived classes.

(Hope this posting gets through OK. I can't get onto my news server at
the moment and so have had to go onto Google groups.)

Chris Gordon-Smith
www.simsoup.info
If you want to "hide" the implementation classes from client code, put
them into a anonymous namespace. That way, they can't ever access the
symbols that represent them, and they can only ever have access to your
instance through base class pointers or references.

Interesting. I just tried that, but now unfortunately my program won't link
because my factory class can't see the derived class' constructor.

Chris Gordon-Smith
www.simsoup.info
Using the anonymous namespace approach requires that anything using the
"hidden" namespace are in the same compilation unit (same file basically)

so you have a factory.h file which declares your factory and base class,
and a factory.cc file which defines the factory, base, and hidden
concrete classes.

--
Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>
Jun 27 '08 #24

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

Similar topics

19
by: qazmlp | last post by:
class base { // other members public: virtual ~base() { } virtual void virtualMethod1()=0 ; virtual void virtualMethod2()=0 ; virtual void virtualMethod3()=0 ;
22
by: Ruben Van Havermaet | last post by:
Hi, I have a problem using member functions in derived classes that override virtual member functions of base classes. The following pieces of (simplified) code don't work. Can anybody give...
14
by: JPRoot | last post by:
Hi I use the following syntax to have events inherited from base to child classes which works nicely (virtual and override keyword on events). But I am wondering if it is a "supported" way of using...
9
by: Ken Varn | last post by:
Is there anyway to override a public virtual method or property so that it is private in my derived class? I tried using new on the property and making it private, but no luck. --...
2
by: Adriano Coser | last post by:
Hello. After I converted my .net code to the new VC2005 syntax I started to get C4490 on my ExpandableObjectConverter subclass overrides. The GetProperties method is no longer called by the...
21
by: bonk | last post by:
Did anyone EVER come across the need to use "new" in a method declaration (breaking with inheritance / versioning)? Allthough I know what it does and how it is used I really have a hard time to...
7
by: Nick Keighley | last post by:
I take it this is wrong:- class Direct_draw { public: Direct_draw (); virtual ~Direct_draw () {}
8
by: puzzlecracker | last post by:
The statement is taken from FAQ . What about non-virtual functions? Can they be overriden? I still don't see a good justification to prefer private inheritance over composition. In fact, I have...
1
by: Tony Johansson | last post by:
Hello! I have three classes below. These are Animal as a base class and one derived class called Cat. The main in within class Tester. If I compile the program as it is now I get the...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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: 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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.