This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

What does it mean when member varialbe of class is static?

Please consider following class:

class SomeTask
{

public: SomeTask(); ~SomeTask(); void initialize(); static unsigned int _tsk;

private: InterfaceTask *_serviceInterface; Protocol * _Protocol;

static SomeTask *_instance;

};

_tsk is declared as static. what does that mean?

0