aspose file tools
The moose likes Beginning Java and the fly likes Thread safe Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Thread safe" Watch "Thread safe" New topic
Author

Thread safe

jaiser roney
Greenhorn

Joined: Jul 15, 2009
Posts: 16
Hi All,

How can we make a method thread-safe (but in terminology we are talking about classes as thread safe) by declaring it as static, i know about synchronized concept but is it possible to make thread safe with only static key word.

Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35443
    
    9
Declaring a method as static has no impact on its thread-safety (or thread-unsafety); that's determined by what the method does with data structures that represent shared state.


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Thread safe
 
Similar Threads
encapsulation
Threads
Mock Question about thread-safe
Thread Safety in Servlets
Static variable