I saw this term used a lot in Joshua block's book effective java specialy on the item related to the method clone , so can some explain what does it means and examples of it ?
Thanks.
|
I saw this term used a lot in Joshua block's book effective java specialy on the item related to the method clone , so can some explain what does it means and examples of it ? Thanks. |
|||||
|
|
Indeterministic, or usually non-deterministic, system is a system that is not deterministic. Deterministic is described in Wikipedia as:
In other words, non-deterministic system is one where there is no guarantee same input will always produce same output. |
||||
|
|
indeterministic means literally you cannot determine what the outcome will be. Thread safety bugs are the most common example of indeterministic behaviour. http://www.google.com/search?q=thread+safety+examples ~ 4M results. |
|||
|
|
|
Practically, non-deterministic means that when you run a program multiple times with the same inputs, the outputs may differ. For the clone method, I don't know, I don't have the book, sorry. |
|||
|
|