processus thread-safe en java

thread-safety or thread-safe code in Java refers to code which can safely be used or shared in concurrent or multi-threading environment and they will behave as expected. any code, class or object which can behave differently from its contract on concurrent environment is not thread-safe.

thread-safety is one of the risk introduced by using threads in Java and I have seen java programmers and developers struggling to write thread-safe code or just understanding what is thread-safe code and what is not? This will not be very detailed article on thread-safety or low level details of synchronization in Java instead we will keep it simple and focus on one example of non thread-safe code and try to understand what is thread-safety and how to make an code thread-safe.

Here is some points worth remembering to write thread safe code in Java, these knowledge also helps you to avoid some serious concurrency issues in Java like race condition or deadlock in Java:

Immutable objects are by default thread-safe because there state can not be modified once created. Since String is immutable in Java, its inherently thread-safe.

Read only or final variables in Java are also thread-safe in Java.

Locking is one way of achieving thread-safety in Java.

Static variables if not synchronized properly becomes major cause of thread-safety issues.

Example of thread-safe class in Java: Vector, Hashtable, ConcurrentHashMap, String etc.

Atomic operations in Java are thread-safe e.g. reading a 32 bit int from memory because its an atomic operation it can't interleave with other thread.

local variables are also thread-safe because each thread has there own copy and using local variables is good way to writing thread-safe code in Java.

In order to avoid thread-safety issue minimize sharing of objects between multiple thread. Volatile keyword in Java can also be used to instruct thread not to cache variables and read from main memory and can also instruct JVM not to reorder or optimize code from threading perspective.

That’s all on how to write thread safe class or code in Java and avoid serious concurrency issues in Java. To be frank thread-safety is a little tricky concept to grasp, you need to think concurrently in order to catch whether a code is thread-safe or not. Also JVM plays a spoiler since it can reorder code for optimization, so the code which looks sequential and runs fine in development environment not guaranteed to run similarly in production environment because JVM may ergonomically adjust itself as server JVM and perform more optimization and reorder which cause thread-safety issues.

Source:

Java string programs

Recommended Posts

processus thread-safe en java
Résumé des threads sûrs ~ Java ~
Java thread sans danger pour vous
Exécution de processus externe en Java
Qu'est-ce que Thread Safe (avec Java)
Les variables locales Java sont thread-safe
Exécuter un processus externe en Java
Qu'est-ce qu'une classe en langage Java (3 /?)
Qu'est-ce qu'une classe en langage Java (1 /?)
Qu'est-ce qu'une classe en langage Java (2 /?)
Traitez n'importe quel nombre de cas dans la liste Java
Partition en Java
Processus de mise en mémoire tampon Java
Janken à Java
Traitement des threads Java
Processus de vérification Java
Taux circonférentiel à Java
FizzBuzz en Java
Deux façons de démarrer un thread en Java + @
Présentation de NLP4J- [000] Natural Language Processing Index en Java
Définissez un affichage contextuel pour le langage Java avec vim.
Lire JSON en Java
Implémentation de l'interpréteur par Java
Faites un blackjack avec Java
Application Janken en Java
Programmation par contraintes en Java
Mettez java8 dans centos7
NVL-ish guy en Java
Joindre des tableaux en Java
"Hello World" en Java
Interface appelable en Java
[Java] Thread et exécutable
Fonctions Azure en Java
Simple htmlspecialchars en Java
Implémentation Boyer-Moore en Java
Hello World en Java
[Java] Exécuter un processus spécifique dans un autre thread avec Executor Service [Eviter une boucle infinie]
Utiliser OpenCV avec Java
Mémorandum WebApi avec Java
Détermination de type en Java
Exécuter des commandes en Java (ping)
Divers threads en java
Implémentation du tri de tas (en java)
API Zabbix en Java
Art ASCII à Java
Comparer des listes en Java
POST JSON en Java
Exprimer l'échec en Java
Créer JSON en Java
Manipulation de la date dans Java 8
Nouveautés de Java 8
Utiliser PreparedStatement en Java
Nouveautés de Java 9,10,11
Exécution parallèle en Java
Thread de programmation Java exécutable
Considérer l'adoption du langage Java à l'ère Reiwa ~ Comment choisir un SDK sûr
Implémentez Thread en Java et essayez d'utiliser la classe anonyme Lambda
[Java] Changez la langue et les paramètres régionaux en anglais avec les options JVM
Arrêter de force le processus Java en spécifiant le PID dans Windows PowerShell