tags:

views:

74

answers:

1

Static effect on memory how much ?

+2  A: 

static Thing m_thing;

One copy of the member variable no matter how many instance objects, so just the size of the type you declare, all depends how big your Thing is.

djna