Object class is the parent class of all the classes in the Java. It is the topmost class; every class implicitly extends this class and provides the methods of Object class. You can think of
In Java, Classes are the templates which describes the behavior and state of its objects and Objects are the instances of the class which are created at the run time and has there own state
Synchronization and Locks are the keys to share a resource among multiple parallel threads. They help in saving trouble of improper state of any resource and creating any confusion among the threads. You can think
Thread’s Life Cycle is an important part of the Java’s Thread’s concepts. Life cycle of thread defines its interaction and behavior with the system and the resources. The programmer needs to understand its knits and
Multi-threading is not a simple task to achieve but if you remember the basics, it might be the easiest task for you. In the last post Java Threads – Do you know the basics?, we
Threads in Java is one of the most important topic, which any Java Programmer should know. But how many of us actually know about it? or I would restate it – How many of us
Java is an object oriented, high level programming language, which was given to the world by Sun Microsystems, in 1995. It has unique distinct feature of Write Once, Run Any Where, giving ease of programming
Java String, a class which is all different than the other classes and variables, and yes you heard it right – String is different than other variables. So what’s so important and big thing about