I don\'t quite understand static variables when defined in the implementation of an interface. In methods I do understand how they differ from local variables, but not when
The 'static' keyword in that context is the same as it would be in plain C: it limits the scope of myInt to the current file.