abstract base class question

J

junw2000

Is it possible to create an abstract base class without a pure virtual
function?

Thanks

Jack
 
J

Jerry Coffin

Is it possible to create an abstract base class without a pure virtual
function?

It's entirely possible to create a class and _use_ it as an abstract
base class (i.e. you only ever derive from it, never instantiate it
directly) without a pure virtual function.

Using a pure virtual function enforces that intent -- i.e. the
compiler won't _let_ you instantiate a class that contains a pure
virtual function (or a derivative, unless all pure virtual functions
have been overridden).
 
R

red floyd

Jerry said:
It's entirely possible to create a class and _use_ it as an abstract
base class (i.e. you only ever derive from it, never instantiate it
directly) without a pure virtual function.

Using a pure virtual function enforces that intent -- i.e. the
compiler won't _let_ you instantiate a class that contains a pure
virtual function (or a derivative, unless all pure virtual functions
have been overridden).

I guess that OP could use a protected constructor or destructor, as well.
 
J

junw2000

Thank a lot.
It's entirely possible to create a class and _use_ it as an abstract
base class (i.e. you only ever derive from it, never instantiate it
directly) without a pure virtual function.

So how to do it? Could you give an example?

Thanks

Jack
 
J

Jerry Coffin

Thank a lot.


So how to do it? Could you give an example?

You write a class. You don't instantiate it. If you want an example
of a class that could be derived from:

class X {
virtual ~X() {}
};

If you intend something to be used as a base class, you typically
want it to have a virtual dtor. Anything else will usually be
specific to what that class is intended to do. I can't really give an
example of not instantiating it, because there's no code involved.
You write things like 'class Y : public X;', but never 'X x;' or
anything like that.
 
R

Ron Natalie

red said:
I guess that OP could use a protected constructor or destructor, as well.

That won't totally prevent instantiation:

class X {
protected;
X();
public:
static X* MakeX() { return new X; }
};
 
R

Rolf Magnus

Is it possible to create an abstract base class without a pure virtual
function?

Well, there are way to make one that behaves similiar, but why would you
want to? You can always make the destructor pure if there is no other
member function that you could make pure.
 
R

rami

Rolf said:
Well, there are way to make one that behaves similiar, but why would you
want to? You can always make the destructor pure if there is no other
member function that you could make pure.

Thats correct!
To elaborate more on Rolfs point,
A pure virtual function can have body but it can only be called from
the derived classes and not by user directly. So for example:

class A {
virtual void fun() = 0;
};

void a::fun() { _DO_SOMETHING_}

class B : public A {
void fun() {
A::fun(); // works fine
}
};

void main() {
A myA; // fails as the class is abstract..

B myB;
myB.fun(); // works fine
}

Now that said, If you dont want any function to be pure virtual it
means you intend to call them through derived class objects. In this
case you can make destructor pure virtual and provide it a body as well
because when ur class is extended (which it must since it is abstract)
it will be destroyed properly since destructor will always be called
through the derived class destructor which c++ compiler will allow.

Ramneek
 
J

Jack Klein

Thats correct!
To elaborate more on Rolfs point,
A pure virtual function can have body but it can only be called from
the derived classes and not by user directly. So for example:

class A {
virtual void fun() = 0;
};

void a::fun() { _DO_SOMETHING_}

class B : public A {
void fun() {
A::fun(); // works fine
}
};

void main() {

You shouldn't post advice here until you become aware of the fact that
there is no such thing as "void main()" in C++. The standard requires
that main() be defined with a return type of int. "void main()" is
ill-formed, requiring a diagnostic. The behavior of any executable
generated is completely undefined.
 
R

rami

Jack said:
You shouldn't post advice here until you become aware of the fact that
there is no such thing as "void main()" in C++. The standard requires
that main() be defined with a return type of int. "void main()" is
ill-formed, requiring a diagnostic. The behavior of any executable
generated is completely undefined.

i think you shudnt be posting here till you spit that attitude out and
realize that this isnt my full time job and i am only trying to help
someone (It was a typo). Or is it that you dont have anything better to
post? Or is forum paying you for picking up garbage?
 
A

Alf P. Steinbach

* rami:
i think you shudnt be posting here till you spit that attitude out and
realize that this isnt my full time job and i am only trying to help
someone (It was a typo). Or is it that you dont have anything better to
post? Or is forum paying you for picking up garbage?

Jack is right. Your posting contained a few errors and misleading text,
but formulated in such a way that many people would take it seriously
(they won't after your reply quoted above, but that's another matter).
Here are three content problems:

* You state "can only be called from the derived classes".
That is incorrect.

* You use "_DO_SOMETHING_" as if that is a valid macro name.
It isn't valid, at least not for your own macro. Names starting
with underscore followed by uppercase are reserved.

* You use "void main".
Already discussed by Jack.

So, please try to pick up a little about how this group works.

Nobody (at least, not I! ;-)) will yell at you for helping out with
facts that you know, or stating opinions, or giving advice in general;
if such postings were removed, then this group would fall from being a
high-traffic, useful group to being a dried-out very sporadic traffic
and mostly useless. It's when the advice is formulated as authoritative
but is in fact something you really don't know anything about, that it's
a problem. Because it might then mislead people and cause new "urban
legends" to be perpetuated, misleading even more people than just those
who originally read your posting and thought it was good.

Cheers,

- Alf
 
R

rami

Alf said:
* rami:

Jack is right. Your posting contained a few errors and misleading text,
but formulated in such a way that many people would take it seriously
(they won't after your reply quoted above, but that's another matter).
Here are three content problems:

* You state "can only be called from the derived classes".
That is incorrect.

* You use "_DO_SOMETHING_" as if that is a valid macro name.
It isn't valid, at least not for your own macro. Names starting
with underscore followed by uppercase are reserved.

* You use "void main".
Already discussed by Jack.

So, please try to pick up a little about how this group works.

Nobody (at least, not I! ;-)) will yell at you for helping out with
facts that you know, or stating opinions, or giving advice in general;
if such postings were removed, then this group would fall from being a
high-traffic, useful group to being a dried-out very sporadic traffic
and mostly useless. It's when the advice is formulated as authoritative
but is in fact something you really don't know anything about, that it's
a problem. Because it might then mislead people and cause new "urban
legends" to be perpetuated, misleading even more people than just those
who originally read your posting and thought it was good.

Cheers,

- Alf

--
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?

Thanks Alf,

I understand and support what you are saying and totally agree. But at
the same time i also discourage people sending such messages which
discourages other posters. If the same thing is said so that it makes
sense more than shows an attitude we would have more people helping
here.. He could have pointed out the typo's in the message and i would
have thanked him for it.. All i know is he wasted his, yours and my
energy + some google's webspace. The point he wanted to make could have
been made with a simple post after rectifying the errors.

P.S. Whats wrong here?
* You state "can only be called from the derived classes".
That is incorrect.

AFAIK, pure virtual functions with bodies can be invoked from the
derived classes only..

Ramneek
 
A

Alf P. Steinbach

* rami:
P.S. Whats wrong here?


AFAIK, pure virtual functions with bodies can be invoked from the
derived classes only..

Try this with your favorite compiler:

#include <iostream>
#include <ostream>

void say( char const s[] ) { std::cout << s << std::endl; }

struct Foo
{
virtual void bar() const = 0;
void g() const { Foo::bar(); }
};

void Foo::bar() const { say( "called" ); }

struct Foo2: Foo { void bar() const {} };

int main() { Foo2().g(); }
 
R

rami

Alf said:
* rami:
P.S. Whats wrong here?


AFAIK, pure virtual functions with bodies can be invoked from the
derived classes only..

Try this with your favorite compiler:

#include <iostream>
#include <ostream>

void say( char const s[] ) { std::cout << s << std::endl; }

struct Foo
{
virtual void bar() const = 0;
void g() const { Foo::bar(); }
};

void Foo::bar() const { say( "called" ); }

struct Foo2: Foo { void bar() const {} };

int main() { Foo2().g(); }


--
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?

Thanks!

So is the point - "can only be called _through_ the derived class
objects"?

Ramneek
 
T

Thomas J. Gritzan

rami said:
Alf said:
* rami:
AFAIK, pure virtual functions with bodies can be invoked from the
derived classes only..
Try this with your favorite compiler:

#include <iostream>
#include <ostream>

void say( char const s[] ) { std::cout << s << std::endl; }

struct Foo
{
virtual void bar() const = 0;
void g() const { Foo::bar(); }
};

void Foo::bar() const { say( "called" ); }

struct Foo2: Foo { void bar() const {} };

int main() { Foo2().g(); }


--
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?

Thanks!

So is the point - "can only be called _through_ the derived class
objects"?

Please don't quote signatures. Good newsreaders cut them automatically.

The point is that there is no restriction on how you can call pure
virtual functions.

However, you cannot instantiate a class with pure virtual functions (you
cannot have objects of this class).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top