Scope of static class methods

Apr 18, 2013 at 9:32pm
When calling a static class method, what scope does it have- something global or just the scope of it's calling function?
Apr 18, 2013 at 9:43pm
the scope that any variable has, because you cant call it when its out of scope
Last edited on Apr 18, 2013 at 9:44pm
Apr 18, 2013 at 9:58pm
The scope of a static class method is the class definition itself (and definitions of its derived classes) including its other member definitions that can be placed outside the class definition.
Last edited on Apr 18, 2013 at 10:11pm
Topic archived. No new replies allowed.