Sat Nov 08, 2008 3:29 pm
#include ....
class A
{
public:
virtual void display () = 0;
};
class B: public A
{
public:
void display ()
{ cout << "B"; }
};
class C: public A
{
public:
void display ()
{cout <<"C";}
};
void main()
{
A a;
B b;
C c;
A * ptr[3];
ptr[0] = &a;
ptr[1] = &b;
ptr[2] = &c;
ptr[1]-> display(); //What's so run time about this?
}
Sat Nov 08, 2008 3:31 pm
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.