Michael White <[EMAIL PROTECTED]> wrote:
> If memory serves me correctly...ADT is when you allocate some new
> memory while the porgram is running...
Thats dynamic memory.
I think the original poster is asking about abstract classes:
class animal
{
public:
void eat();
void sleep();
virtual void breathe() = 0 ;
};
class fish : public animal
{
public:
void breathe();
};
void fish::breath
{
cout << "Bubbling..." << endl ;
}
To unsubscribe, send a blank message to <mailto:[EMAIL PROTECTED]>.
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/c-prog/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
