Sunday, 18 March 2018

Static functions in C++


//Static functions in C++
#include<iostream.h>
#include<conio.h>

class stat
{
    int code;
    static int count;

   public:
    stat()
    {
      code=++count;
    }
    void showcode()
    {
      cout<<"\n\tObject number is :"<<code;
    }
    static void showcount()
    {
              cout<<"\n\tCount Objects :"<<count;
    }
};

int stat::count;

void main()
{
   clrscr();
   stat obj1,obj2;

   obj1.showcount();
   obj1.showcode();
   obj2.showcount();
   obj2.showcode();
   getch();
}

No comments:

Post a Comment

Note: only a member of this blog may post a comment.