Is it possible to access static methods of a class by multiple object instances simultaneously ?
Posted
by Richeve S. Bebedor
on Stack Overflow
See other posts from Stack Overflow
or by Richeve S. Bebedor
Published on 2010-05-30T13:29:07Z
Indexed on
2010/05/30
13:32 UTC
Read the original article
Hit count: 132
java
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?
© Stack Overflow or respective owner