AIM
Write a program to illustrate the static member function.
ALGORITHM
1. Start the process
2. Invoke the class
i. Set the data member and member function as a static
b. Create two objects t1 and t2
3. Call the function t1.setcode
i. Increment the value of data member count
4. Call the function t1.setcode
i. Increment the value of data member count
5. Call the static member function showcount()
i. Display the value of count
6. Create a new object t3
7. Call the function t3.set code()
8. Call t1.showcount(), t2.showcount() and t3.showcount()
9. Stop the process
PROGRAM
#include<iostream.h> #include<conio.h> class test { int code; static int count; public : void setcode(void) { code= ++count; } void showcode(void) { cout<<"object number"<<code<<endl; } static void showcount(void) { cout<<"count"<<count<<endl; } }; int test::count; int main() { clrscr(); test t1,t2; t1.setcode(); t2.setcode(); test::showcount(); test t3; t3.setcode(); test::showcount(); t1.showcode(); t2.showcode(); t3.showcode(); getch(); return(1); }
OUTPUT
Count 2
Count 3
Object number 1
Object number 2
Object number 3
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya
August 14th, 2010 at 1:00 pm
i need a program that illustrate the call by value and reference
of object of a class. send it to my email id.
bishnu_nayak2009@yahoo.in
July 31st, 2011 at 12:21 am
hi thanx.i want one example program in static member functions and static data members plz sent it tomorrow plz i need it fast send to mail mail.ID:mymoonasiya@yahoo.com
November 20th, 2011 at 9:48 am
plz mujhe friend class and friend fucton ka program with description chaiye,means how the procedure in a prog work.plz give overall explaination step by step.nd send me in farheenn44@gmail.com.thax a lot.