Click here to Skip to main content
15,921,530 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: what is a static class Pin
toxcct12-May-06 4:05
toxcct12-May-06 4:05 
GeneralRe: what is a static class Pin
ThatsAlok12-May-06 4:15
ThatsAlok12-May-06 4:15 
GeneralRe: what is a static class Pin
kumar_mk12-May-06 5:02
kumar_mk12-May-06 5:02 
AnswerRe: what is a static class Pin
ThatsAlok12-May-06 4:17
ThatsAlok12-May-06 4:17 
GeneralRe: what is a static class Pin
kumar_mk12-May-06 5:06
kumar_mk12-May-06 5:06 
AnswerRe: what is a static class Pin
Maxwell Chen12-May-06 7:18
Maxwell Chen12-May-06 7:18 
GeneralRe: what is a static class Pin
toxcct12-May-06 9:55
toxcct12-May-06 9:55 
AnswerRe: what is a static class Pin
Maxwell Chen12-May-06 16:35
Maxwell Chen12-May-06 16:35 
And a further example to demonstrate that the member variables are not shared among individual static instances.
#include <iostream>

static class Type
{
	int v;
public:
	void Hello() {
	       std::cout << "Type::Hello() \nv = " << v << " \n";
       	}
	void Hello(int n) {
	       v = n;
       	       std::cout << "Type::Hello(" << v << ") \n";
        }
} g_obj, g_objx;

int main()
{
	std::cout << "g_obj \n";
	g_obj.Hello(3);
	g_obj.Hello();
	std::cout << "g_objx \n";
	g_objx.Hello();
	return 0;
}
The output goes to:
g_obj
Type::Hello(3)
Type::Hello()
v = 3
g_objx
Type::Hello()
v = 0



Maxwell Chen
AnswerRe: what is a static class Pin
Stephen Hewitt12-May-06 20:09
Stephen Hewitt12-May-06 20:09 
AnswerRe: what is a static class Pin
Nemanja Trifunovic13-May-06 3:08
Nemanja Trifunovic13-May-06 3:08 
QuestionLNK1202 error Pin
koumodaki12-May-06 3:14
koumodaki12-May-06 3:14 
AnswerRe: LNK1202 error Pin
Hamid_RT12-May-06 3:29
Hamid_RT12-May-06 3:29 
GeneralRe: LNK1202 error Pin
koumodaki12-May-06 3:36
koumodaki12-May-06 3:36 
GeneralRe: LNK1202 error Pin
Hamid_RT12-May-06 3:39
Hamid_RT12-May-06 3:39 
GeneralRe: LNK1202 error Pin
koumodaki12-May-06 4:20
koumodaki12-May-06 4:20 
GeneralRe: LNK1202 error Pin
Hamid_RT12-May-06 4:36
Hamid_RT12-May-06 4:36 
GeneralRe: LNK1202 error Pin
celalcengiz14-Dec-10 3:51
celalcengiz14-Dec-10 3:51 
QuestionRe: LNK1202 error Pin
David Crow12-May-06 4:18
David Crow12-May-06 4:18 
AnswerRe: LNK1202 error Pin
koumodaki12-May-06 4:20
koumodaki12-May-06 4:20 
GeneralRe: LNK1202 error Pin
NiceNaidu12-May-06 4:52
NiceNaidu12-May-06 4:52 
GeneralRe: LNK1202 error Pin
koumodaki12-May-06 5:00
koumodaki12-May-06 5:00 
GeneralRe: LNK1202 error Pin
Hamid_RT12-May-06 5:30
Hamid_RT12-May-06 5:30 
AnswerRe: LNK1202 error Pin
Hamid_RT12-May-06 4:35
Hamid_RT12-May-06 4:35 
QuestionVERTICAL SCROLL is visible or available Pin
Killer312-May-06 3:13
Killer312-May-06 3:13 
AnswerRe: VERTICAL SCROLL is visible or available Pin
Naveen12-May-06 3:25
Naveen12-May-06 3:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.