Java Beginners Guide: Generics 1.5 tutorial in java with Example programs Kiran HC 06:38 0 comments The main objectives of generics are to provide type safety and resolve type casting problems. Case 1: Type Safety Arrays are type saf...
Java Beginners Guide: What is DeadLock with example | DeadLock Vs Starvation in Multithreading Kiran HC 06:04 0 comments what is Dead Lock If two threads are waiting for each other forever such type of infinite waiting is called deadlock. Synchronized...
Java Beginners Guide: What is Daemon Thread nature with example program in multithreading core java Kiran HC 04:51 0 comments Daemon Thread Nature: The threads which are executing in the backgrounds are called Daemon threads. Example: Garbage collector, Sign...