From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 109fba,b87849933931bc93 X-Google-Attributes: gid109fba,public X-Google-Thread: 1108a1,b87849933931bc93 X-Google-Attributes: gid1108a1,public X-Google-Thread: 114809,b87849933931bc93 X-Google-Attributes: gid114809,public X-Google-Thread: fac41,b87849933931bc93 X-Google-Attributes: gidfac41,public X-Google-Thread: 103376,b87849933931bc93 X-Google-Attributes: gid103376,public X-Google-Thread: f43e6,b87849933931bc93 X-Google-Attributes: gidf43e6,public From: Jason Shankel Subject: Re: C++ Class Date: 1997/02/12 Message-ID: <33023238.7F28@crl.com>#1/1 X-Deja-AN: 219261222 References: <33018394.1718@scf.usc.edu> Content-Type: text/plain; charset=us-ascii Organization: CCnet Communications (510-988-7140 guest) Mime-Version: 1.0 Reply-To: no_spam.shankel@crl.com Newsgroups: comp.lang.c++,comp.lang.smalltalk,comp.lang.eiffel,comp.lang.ada,comp.object,comp.software-eng X-Mailer: Mozilla 3.0Gold (Win95; I) Date: 1997-02-12T00:00:00+00:00 List-Id: Loc Minh Phan Van wrote: > > Hi, > Is there anyway that we can Define a class that can not be instantiated > in any way by the user (that is, you can not have objects of that type), > but it can be used as a base class. > > If so please give me a little example. > > Thanks > > Fr, Loc Phan In C++, you're talking about an abstract base class. An abstract class in C++ is a class which has at least one pure virtual function, which must be overridden by a child class. Pure virtual functions are designated by the "=0" idiom. Abstract base classes cannot be instantiated: class IFoo { public: virtual void Method() = 0; //Pure virtual function }; class CFoo : public IFoo { public: virtual void Method(){}; //Overridden }; void main() { IFoo *object; object = new IFoo(); //ERROR, cannot instantiate abstract class object = new CFoo(); //Legal };