Static data members and static member function, C/C++ Programming

Assignment Help:

Static Data Members:

A data member inside the class can construct as static data member.   There are few

guidelines to be followed when declaring static data member.

  • It is declared as a private data member.
  • Only one copy of the static data member is created any numbers of objects are created from that class. Therefore the static data member will be same for all the objects created.
  • The static member must be defined outside the class like function with class name.
  • The static member can be initialized in the definition and can be used only within its class.

 

The following program will give clear difference between static data count and regular data number members.  The static data is common to all objects but regular data is unique to its object.

 

class item

{int number; static int count; public:

void getdata()

{++count;

number=count;

}

void putdata(void)

{cout<<"Count is "<

cout<<"Number is "<

}

};

int item::count=0;

int main()

 

 

{           clrscr();

item x,y,z; //Three object produced from class item x.getdata();

y.getdata();

z.getdata();

x.putdata(); The count is 3 and number is 1

y.putdata(); The count is 3 and number is 2 z.putdata(); The count is 3 and number is 3

return 0;

}

 

Static Member Function:

The static member function can be specified like static data member.  It works asc a static member data except the static member data is used in static member function.

Rules of Static Member function are given below:

  • The static member function can read static data member only from its class.
  • The static member function is called using class name not object name. class_name::static_function_name( ); It can also be called using object.static_fun( ).

 

The given program will illustrate how the static member function is worked.

 class find

{static int count;

int code;

public:

static void showcount(void)

{cout<<"Count is " <

}

void setcode(void)

{code = ++count;

}

void setcount(void)

{ cout<<"Code is " <

}

};

int find ::count=0;

int main()

{clrscr();

find x,y,z;

x.setcode(); // Code and count is 1. y.setcode(); //Code and count is 2 find::showcount(); //Count is 2

 

z.setcode(); //Code and count is 3 find::showcount(); //Count is 3

 

x.setcount(); // Code is 1 for object x.

 

 

 

 

y.setcount(); // Code is 2 for object y. z.setcount(); // Code is 3 for object z.

 

x.setcode(); // Code and count is 4. y.setcode(); //Code and count is 5 z.setcode(); //Code and count is 6 find::showcount(); //Count is 6

//The value of code will increase from its previous value of that object.

x.setcount(); // Code is 4 for object x. y.setcount(); / Code is 5 for object x. z.setcount(); // Code is 6 for object x.

return 0;

}

 

Since the count is declared as static it has only one copy irrespective of number of objects created.   When static count function called again and again it will increase count for all the objects created simultaneously therefore the count will be uniform for all object, but for the data member code it is unique for each object created because it is not a static data member.  Therfore from the above example there will only one value for count data member irrespective of number of objects constructed since it is a static data member, where as for code data member the value will be different for each object.


Related Discussions:- Static data members and static member function

Database, write a c++ program to update employee records

write a c++ program to update employee records

Define the c preprocessor, Define the C Preprocessor? Preprocessor' is ...

Define the C Preprocessor? Preprocessor' is a translation stage that is applied to your source code before the compiler proper gets its hands on it usually the preprocessor per

Program of function overloading in c++ , Program of function overloading: ...

Program of function overloading: class vector{                 private :                 int v[3];                   public:                 /*friend istream &

Bubble sort c program, Bubble sort C program: Write a program to defin...

Bubble sort C program: Write a program to define a bubble sort. void main()  {   clrscr();   int a[100],ch,n;   cout   cin>>n;   for (int i=0;i

Program to create local shopping cart, Available, and the right kind of pro...

Available, and the right kind of programs. My son wants to stop using ice. He has organised detox a number of times, and is always successful. It is the next stage, rehab, where

Define the double data type of c language, Define the Double Data Type of c...

Define the Double Data Type of c Language? The double is used to define BIG floating point numbers and it reserves twice the storage for the number. When the accuracy provided

Get all table list from current database , i am using otlv4 for database co...

i am using otlv4 for database connecttvity, while i try to get all tables list from current database using query "$SQLTables" no output is displayed though programe compiles coretl

Wap to print numbers from 1-50 which are divided by 7, WAP TO PRINT NUMBERS...

WAP TO PRINT NUMBERS FROM 1-50 WHICH ARE DIVIDED BY 7 void main () { int a; clrscr (); a=1; while (a { if (a%7==0) printf ("%d\n",a); a++; } ge

#pointers, what is the purpose of pointer ? what is the syntax? how it work...

what is the purpose of pointer ? what is the syntax? how it works?

We need to decompile ex4 to mq4, We need to Decompile ex4 to mq4 I have ...

We need to Decompile ex4 to mq4 I have three expert advisors for mt4, which I need to decompile to its original mq4 code. Skills required are C Programming, C++ Programming,

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd