|
How does static method affect performance in
Java?
I understand that all the method variables are
created on Stack and hence each calling party gets its own stack of variables,
hence there should not be problems of concurrency as long as only method local
variables are manipulated.
What other reasons are there for not using a static
methods ?
Thanks
Mayank
|