Open In App

Java | How to start learning Java

Java is one of the most popular and widely used programming languages and platforms. A platform is an environment that helps to develop and run programs written in any programming language.
Java is fast, reliable, and secure. From desktop to web applications, scientific supercomputers to gaming consoles, cell phones to the Internet, Java is used in every nook and corner.



About Java

  1. Understand the basics:
    Learning the basics of any programming language is very important. It is the best way to begin learning something new. Don’t have any anxiety, begin learning the concepts about the language. Get familiar with the environment, and slowly you will get used to it within no time. Here are a few links to get you started:
  2. Patience is the key:
    Learning Java will be overwhelming because of the volume of material about the language but be patient, learn at your own pace, don’t rush. Mastering Java is a process that takes time. And remember even the best coders would have started at some point. So it’s not a big deal, just do as much as you can and keep going. Give it your time. Patience is the key to success.
  3. Practice Coding
    Once you have understood the basics, the best thing to do is to brush up your skills with regular practice. True knowledge comes only when you implement what you’ve learned, as is said ‘Practice Makes a Man Perfect’. So, code more than you read. This will build your confidence. Remember Perfect Practice makes you Perfect.
    Practice Coding: You can increase your coding skills here. Happy Coding!
  4. Read about Java regularly
    Continuously read about the various topics in Java and try to explore more. This will help to maintain your interest in Java.
    Go through this link to explore the vast world of Java:
    Explore Java >>
    Recent articles on Java >>
  5. Study in a group
    Group study is a better way to learn something. This way you get to know about new things about the topic as everyone presents their ideas and you can discuss and solve your coding problems on the spot. Get to know a common group of people who are willing to learn java.
    Get help from a tutor and read as many books about java as possible. There are many good books in the market that will help you in learning java.

Setting up Java

You can download java from here. Here you will find different versions of java. Choose and download the one compatible with your operating system.
For detailed instructions for setting up of Java, refer this article.

After you have set up the Java environment correctly, try running this simple program:




// A Java program to print GeeksforGeeks
public class GFG {
    public static void main(String args[])
    {
        System.out.println("GeeksforGeeks");
    }
}

Output:
GeeksforGeeks

If the environment is set up correctly and the code is correctly written, you shall see this output on your console. That is your first Java program!




// javascript code demonstrating a simple object
const school = new Object();
school.name = 'Vivekanada school';
school.location = 'Delhi';
school.established = 1971;
  
school.displayInfo = function(){
    console.log(school.name + 'was established in '+ school.established +'at '+ school.location);
    console.log(`${school.name} was`);
}
school.displayInfo();   


Article Tags :