From within the class, how do I access a static variable explicitly? (Is the best practice to access static variable explicitly eg. using static.staticVar)
The below works
class Something {
protected static _var1;
public void somefunc() {
return _var1;
}
}
But how do i specify it explicitly? (Is specifying explicitly recommended?)