Print
Category: Java
Hits: 587

Reasons for multithreading:

How to make an Java object thread-safe

An object is thread-safe when it is called by multiple threads at the same time and it is still in a valid state.

Difference between thread-safe and concurrency:

Thread-safe implies locking entire object, concurrent implies read operations do not lock object.
For example, concurrent access to hash map allow concurrent access to different partitions.

Creating Thread

class MyThread extends Thread {
	@Override
	public void run();
}
new MyThread().start();

new Thread(new Runnable()).start();