Is it possible to access static methods of a class by multiple object instances simultaneously ?
- by Richeve S. Bebedor
Example:
ThisClass.staticMethod(Object... parameters);
will be accessed by multiple instances of other objects and simultaneously.
Will there be any dependencies with this other objects when they are using the same static method at the same time?