Hi Folks,
I ahve some basic queries related to polymorphism.
for example:
1)class Base
{
public:
virtual void show()
{
}
}
0
int main()
{
Base obj;
obj.show() // I think complite time polymorphism comes here. Am I correct ?
Base *obj = new Base()
obj->show() // Compile time polymorphism .. Am I correct?
}
Thx,
--Gopi
9705355488
See the Web's breaking stories, chosen by people like you. Check out
Yahoo! Buzz. http://in.buzz.yahoo.com/
[Non-text portions of this message have been removed]
