C
Carmen Sei
does static in C++ is exactly the same as in Java?
the following static variable is Class variable that I can call by
Class Name
Configuration.RemoteType = xx;
#######################
class Configuration {
public:
Configuration();
void Initialize();
public:
static RemoteType RemoteType;
static ControllerType ControllerType;
};
the following static variable is Class variable that I can call by
Class Name
Configuration.RemoteType = xx;
#######################
class Configuration {
public:
Configuration();
void Initialize();
public:
static RemoteType RemoteType;
static ControllerType ControllerType;
};