473,398 Members | 2,188 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,398 software developers and data experts.

Designing interface class in a good way

I'm designing an ABC and in connection to that i have run
into some "huh!" and "oh...". Let me put it as a list.

1. Since the class will only contain bodies of the methods,
only the header file is needed. There will be no definitions
provided until i derive the ABC. True or false?

2. Since i'll have two different classes (both derived from
the original ABC) i'll use the following syntax in my main
class using the derivation.
AbstractClass* obj;
obj = DerivedClassA ();
Is that correct? Do i need "new" somewhere? I'm a Java
boy really so i like using "new" every now and then...

3. I have looked through the whole of the internet (almost*)
for a simple syntax example that will show how to set up
such a derivation scheme but to no avail. Any pointers?

*almost = until i got tired after about 2 hours

--
Vänligen Kerstin Viltersten
(The Cool Giraffe)
Feb 25 '07 #1
5 1579
The Cool Giraffe wrote:
I'm designing an ABC and in connection to that i have run
into some "huh!" and "oh...". Let me put it as a list.

1. Since the class will only contain bodies of the methods,
only the header file is needed. There will be no definitions
provided until i derive the ABC. True or false?
The "body of the method" is its *definition*. So, false.
2. Since i'll have two different classes (both derived from
the original ABC) i'll use the following syntax in my main
class using the derivation.
AbstractClass* obj;
obj = DerivedClassA ();
What's "DerivedClassA"?
Is that correct? Do i need "new" somewhere? I'm a Java
boy really so i like using "new" every now and then...
We C++ boys use "new" every now and then too, whether we like
it or not.
3. I have looked through the whole of the internet (almost*)
for a simple syntax example that will show how to set up
such a derivation scheme but to no avail. Any pointers?
groups.google.com.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Feb 25 '07 #2
In article <54*************@mid.individual.net>, gi******@viltersten.com
says...
I'm designing an ABC and in connection to that i have run
into some "huh!" and "oh...". Let me put it as a list.

1. Since the class will only contain bodies of the methods,
only the header file is needed. There will be no definitions
provided until i derive the ABC. True or false?
I think you mean it will contain only declarations of the methods, not
definitions. A declaration has no body, so to speak.

This is not necessarily the case: at least as I've always used the term,
an abstract base class contains at least one pure virtual function (I.e.
which is declared but not defined). Other functions may or may not be
defined in the base class.

If you want, you can certainly create an abstract base class that's
simliar to a Java interface -- i.e. that only declares functions, but
doesn't define any of them. C++, however, doesn't _require_ anything
like this.
2. Since i'll have two different classes (both derived from
the original ABC) i'll use the following syntax in my main
class using the derivation.
AbstractClass* obj;
obj = DerivedClassA ();
Is that correct? Do i need "new" somewhere? I'm a Java
boy really so i like using "new" every now and then...
Use of new (or lack thereof) is related primarily to lifetime. If you're
creating an object that needs to live after execution exits from the
current scope, chances are you'll need to use new to create it. If you
want the object to cease to exist when execution exits from the current
scope, new is probably unnecessary and may be counterproductive.

Good use of an ABC doesn't require that when you create the object you
use a pointer (or reference) to the base class. Consider something like:

class base { /* whatever */ };
class derived : public base { /* whatever */ };

void some_func(base &b) { /* use object */ }

int main() {
derived x;
some_func(x);
return 0;
}

This allows some_func to operate any derivative of base, even though
were we create base, we're just creating an automatic object.
3. I have looked through the whole of the internet (almost*)
for a simple syntax example that will show how to set up
such a derivation scheme but to no avail. Any pointers?
Perhaps if you told us what you're really trying to accomplish we could
provide more help. Right now, it's not clear what sort of "derivation
scheme" you really want.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Feb 25 '07 #3
Jerry Coffin wrote/skrev/kaita/popisal/schreibt :
gi******@viltersten.com says...
>I'm designing an ABC and in connection to that i have run
into some "huh!" and "oh...". Let me put it as a list.

1. Since the class will only contain bodies of the methods,
only the header file is needed. There will be no definitions
provided until i derive the ABC. True or false?

I think you mean it will contain only declarations of the methods, not
definitions. A declaration has no body, so to speak.

This is not necessarily the case: at least as I've always used the
term, an abstract base class contains at least one pure virtual
function (I.e. which is declared but not defined). Other functions
may or may not be defined in the base class.

If you want, you can certainly create an abstract base class that's
simliar to a Java interface -- i.e. that only declares functions, but
doesn't define any of them. C++, however, doesn't _require_ anything
like this.
So, since i only will provide the declarations of the members,
hence, only providing virtual methods - is it possible to only
provide the header file, then? Or do i have to provide a cpp
file anyway and if so what does it contain?

<snip>
>3. I have looked through the whole of the internet (almost*)
for a simple syntax example that will show how to set up
such a derivation scheme but to no avail. Any pointers?

Perhaps if you told us what you're really trying to accomplish we
could provide more help. Right now, it's not clear what sort of
"derivation scheme" you really want.

Here i have created an example for what i think i'd like to
ask about. Please point out the errors and/or iffy spots.
The cout is working (includes to that and std:: are implicit).

// file Base.h
class Base {
public:
Base ();
virtual void doSome ();
};

// file Base.cpp
// empty or non-existing

// file DeriA.h
// empty or non-existing

// file DeriA.cpp
#include "Base.h"
class DeriA : public Base {
public:
DeriA () {}
void doSome () { cout << "Test A"; }
};

// file DeriB.h
// empty or non-existing

// file DeriB.cpp
#include "Base.h"
class DeriB : public Base {
public:
DeriB () {}
void doSome () { cout << "Test B"; }
};

// file Test.h
// empty or non-existing

// file Test.cpp
#include "Base.h"
class Test {
public:
Base base;
void assignA () { base = DeriA (); }
void assignB () { base = DeriB (); }
};

Above anything you might have to say i'd like to
explicitly ask about the following.

1. Is my not-using destructors a problem?
2. What exactly should i include in Test-class?
3. I've read that Base base; will create an object of that
class. On the other hand, it's abstract, so it won't do it. Does
it mean that i'm supposed to declare a handle base to take
care of the problem? Is it Base& base; or perhaps should i
use Base* base; instead?

--
Vänligen Kerstin Viltersten
(The Cool Giraffe)
Feb 26 '07 #4
On Feb 26, 2:39 am, "The Cool Giraffe" <giraf...@viltersten.com>
wrote:
Jerry Coffin wrote/skrev/kaita/popisal/schreibt :
giraf...@viltersten.com says...
I'm designing an ABC and in connection to that i have run
into some "huh!" and "oh...". Let me put it as a list.
1. Since the class will only contain bodies of the methods,
only the header file is needed. There will be no definitions
provided until i derive the ABC. True or false?
I think you mean it will contain only declarations of the methods, not
definitions. A declaration has no body, so to speak.
This is not necessarily the case: at least as I've always used the
term, an abstract base class contains at least one pure virtual
function (I.e. which is declared but not defined). Other functions
may or may not be defined in the base class.
If you want, you can certainly create an abstract base class that's
simliar to a Java interface -- i.e. that only declares functions, but
doesn't define any of them. C++, however, doesn't _require_ anything
like this.

So, since i only will provide the declarations of the members,
hence, only providing virtual methods - is it possible to only
provide the header file, then? Or do i have to provide a cpp
file anyway and if so what does it contain?

<snip>
3. I have looked through the whole of the internet (almost*)
for a simple syntax example that will show how to set up
such a derivation scheme but to no avail. Any pointers?
Perhaps if you told us what you're really trying to accomplish we
could provide more help. Right now, it's not clear what sort of
"derivation scheme" you really want.

Here i have created an example for what i think i'd like to
ask about. Please point out the errors and/or iffy spots.
The cout is working (includes to that and std:: are implicit).

// file Base.h
class Base {
public:
Base ();
virtual void doSome ();

};

// file Base.cpp
// empty or non-existing

// file DeriA.h
// empty or non-existing

// file DeriA.cpp
#include "Base.h"
class DeriA : public Base {
public:
DeriA () {}
void doSome () { cout << "Test A"; }

};

// file DeriB.h
// empty or non-existing

// file DeriB.cpp
#include "Base.h"
class DeriB : public Base {
public:
DeriB () {}
void doSome () { cout << "Test B"; }

};

// file Test.h
// empty or non-existing

// file Test.cpp
#include "Base.h"
class Test {
public:
Base base;
void assignA () { base = DeriA (); }
void assignB () { base = DeriB (); }

};

Above anything you might have to say i'd like to
explicitly ask about the following.

1. Is my not-using destructors a problem?
2. What exactly should i include in Test-class?
3. I've read that Base base; will create an object of that
class. On the other hand, it's abstract, so it won't do it. Does
it mean that i'm supposed to declare a handle base to take
care of the problem? Is it Base& base; or perhaps should i
use Base* base; instead?

--
Vänligen Kerstin Viltersten
(The Cool Giraffe)

Your lack of destructors is a problem. Classes with virtual functions
should have virtual destructors. The base class can be a simple empty
function if need be.
For Base.* you either need pure virtual specifiers or an
implementation:

If you're shooting for pure abstract ( To mimick java's interface
type ) you probably don't need a constructor.

class Base {
public:
virtual Base() {}
virtual void doSome () = 0 ;
} ;

DeriA.h and DeriB.h must not be empty and contain a declaration of the
class. Ie:

DeriA.h:

class DeriA {
public:
DeriA ();
virtual ~DeriA() ;
virtual void doSome () ;
};

Test.h can be empty.

Test.cpp needs to include DeriA.h and DeriB.h to use those classes
though.

HTH,
Paul Davis

Feb 26 '07 #5
On Feb 26, 1:07 am, "paul.joseph.da...@gmail.com"
<paul.joseph.da...@gmail.comwrote:
Your lack of destructors is a problem. Classes with virtual functions
should have virtual destructors. The base class can be a simple empty
function if need be.
Somebody makes this overgeneralization every month or two. Please
think before you write!

Feb 26 '07 #6

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

Similar topics

6
by: E G | last post by:
Hi! I am having problems in designing a class. First, I have a base class that allocates a 3D data set and allows some other mathematical operations with it, something like this: template...
12
by: James Brown | last post by:
Hi all, Having problems designing a template-class. I'll describe my scenario first then show what I've come up with so far: Need a class to provide pointer/array-like access to an area of...
6
by: Gary James | last post by:
This may not be a direct C# question, but since I'll be using using C# for development, I thought I'd pose the question here. I'll soon be involved in the design of a new software product that...
2
by: Sky Sigal | last post by:
Hello: I'm currently messing around, and need as much feedback/help as I can get, trying to find the most economical/graceful way to build usercontrols that rely on styling to look any good... ...
0
by: Julia Beresford | last post by:
Hi I have a VB .NET class library with classes and collection classes (classes that implement ICollection) that allow a client to read and write data to and from an SQL database. For example if...
2
by: jack | last post by:
Hi all, im in a middle of an project and it is going pretty well. But one this that is always in back of my mind is the interface design. every day i look at it i tend to change either the...
6
by: S. Lorétan | last post by:
Hi guys. I am preparing the rewriting of an huge existing application in VB6. This software is a mess of 10 years of patchs and new functionalities added randomly, and didn't have any logical or...
0
by: Memfis | last post by:
While I was looking through the group's archives I came across a discussion on doing properties (as known from Delphi/C#/etc) in C++. It inspired me to do some experimenting. Here's what I came up...
1
weaknessforcats
by: weaknessforcats | last post by:
Introduction Polymorphism is the official term for Object-Oriented Programming (OOP). Polymorphism is implemented in C++ by virtual functions. This article uses a simple example hierarchy which...
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...
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.