What is More Faster Using Functions or Using Static Methods in multiple threaded programme?Please explain why it is faster.?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You may have heard that "pure functions" are better for multithreading. A pure function can often be implemented as as static method in Java, but it could also be implemented as an instance method. The main point is that when multithreading it is always better if you don't have any global variables that can change. So if you have an immutable object, that's as good as having static method implementing a pure function. |
|||
|
|
|
Even if there is a sensible difference between the 2 approaches (which I seriously doubt), you should never design your programs based on this. Good design should (almost) never be sacrificed to achieve better performance. Because you don't gain a lot, but you lose a lot. |
|||||||
|
