Is it true that if I only use immutable data type, my Java program would be thread safe?
Any other factors will affect the thread safety?
*Would appreciate if can provide an example. Thanks! *
|
Is it true that if I only use immutable data type, my Java program would be thread safe? Any other factors will affect the thread safety? *Would appreciate if can provide an example. Thanks! * |
|||||||||||
|
|
Thread safety is about protecting shared data and immutable objects are protected as they are read only. Well apart from when you create them but creating a object is thread safe. It's worth saying that designing a large application that ONLY uses immutable objects to achieve thread safety would be difficult. It's a complicated subject and I would recommend you reading Java Concurrency in Practice which is a very good place to start. |
|||||||||
|
|
It is true. The problem is that it's a pretty serious limitation to place on your application to only use immutable data types. You can't have any persistent objects with state which exist across threads. I don't understand why you'd want to do it, but that doesn't make it any less true. Details and example: http://www.javapractices.com/topic/TopicAction.do?Id=29 |
|||
|
|
|
If every single variable is immutable (never changed once assigned) you would indeed have a trivially thread-safe program. Functional programming environments takes advantage of this. However, it is pretty difficult to do pure functional programming in a language not designed for it from the ground up. A trivial example of something you can't do in a pure functional program is use a loop, as you can't increment a counter. You have to use recursive functions instead to achieve the same effect. If you are just straying into the world of thread safety and concurrency, I'd heartily recommend the book Java Concurrency in Practice, by Goetz. It is written for Java, but actually the issues it talks about are relevant in other languages too, even if the solutions to those issues may be different. |
|||||
|
|
Immutability allows for safety against certain things that can go wrong with multi-threaded cases. Specifically, it means that the properties of an object visible to one thread cannot be changed by another thread while that first thread is using it (since nothing can change it, then clearly another thread can't). Of course, this only works as far as that object goes. If a mutable reference to the object is also shared, then some cases of cross-thread bugs can happen by something putting a new object there (but not all, since it may not matter if a thread works on an object that has already been replaced, but then again that may be crucial). In all, immutability should be considered one of the ways that you can ensure thread-safety, but neither the sole way nor necessarily sufficient in itself. |
|||
|
|
|
Although immutable objects are a help with thread safety, you may find "local variables" and "synchronize" more practical for real world progamming. |
|||
|
|
|
Any program where no mutable aspect of program state is accessed by more than one thread will be trivally thread-safe, as each thread may as well be its own separate program. Useful multi-threading, however, generally requires interaction between threads, which implies the existence of some mutable shared state. The key to safe and efficient multi-threading is to incorporate mutability at the right "design level". Ideally, each aspect of program state should be representable by one immutably-rooted(*), mutable reference to an object whose observable state is immutable. Only one thread at a time may try to change the state represented by a particular mutable reference. Efficient multi-threading requires that the "mutable layer" in a program's state be low enough that different threads can use different parts of it. For example, if one has an immutable (*) The rooted path must exist when the aspect of state becomes relevant, and must not change while the access is relevant. For example, one could design an |
|||
|
|