On Mon, 27 Dec 2004 05:21:18 -0800 (PST)
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
ADVERTISEMENT
click here


Yahoo! Groups Links

Reply via email to