Pure Virtual Function
Thursday, 16 March 2017
Programming in C Plus Plus
Pure Virtual Function -
เค
เคเคฐ เคนเคฎ base class เคฎें เคिเคธी function เคो define เคเคฐे เคคเคฅा เคเคธเคी เคชुเคจः definition derived class เคฎें เคฆी เคाเคฏे เคคो base class เคा เคตเคน function do-nothing เคช्เคฐเคाเคฐ เคा เคนै, เคเคธ เคช्เคฐเคाเคฐ เคे function เคो Pure Virtual Function เคเคนा เคाเคคा เคนै เคคเคฅा เคเคธी classes เคिเคจเคฎें Pure Virtual Function เคฌเคจा เคนो Abstract Class เคเคนเคฒाเคคी เคนै।
//virtual void display()=0;
Example-
class fruit //base class
{
//virtual void display()=0;
}
class apple : public fruit // abstract class
{
void display()
{
Cout<<"this is a Pure Virtual Function";
}
}
This flag how fit
ReplyDelete