Declaration vs Instantiation vs Initialization

Declaration, Instantiation and Initialization are very confusing terms in Java. Let us clear their meanings with example : Declaration A variable is said to be declared when we give name to variable and associate it with a class. Example :- Student stu; (here Student is a class) Instantiation Instantiation means we are creating an object … Read more

Create a new Java project and program in Eclipse

In previous post we saw how to download eclipse and create a new workspace. Now let us see how to create a new Java project, program and run the program in Eclipse. Steps to create and run Java program : Step 1 : After eclipse has opened, a welcome screen will appear. You can explore … Read more