Welcome

Ok, so you want to learn Java Programming Or maybe it's part of a subject you're doing and so you're learning it because you have to. Either way, that's great. Java is one of the most powerful programming today. Not only that, it's widely used in corporate environment thus the salary is also good. By the way I would like to congratulate you in making a big step in learning java because it can make your life easier, and make you awesome (more so than I'm sure you already are)

Java High Level Overview

Java is a programming language which is widely used on countless devices. This programming language became very popular because of the concept of writing once and run anywhere.

Traditional programming language such as C, C++ and Pascal are platform dependent which means that if you write and compile the source code in windows, it must and will run only on windows. Imagine how many derivate of Microsoft Windows we already have including the 32 bit and 64 bit version. And lets add up the different flavors of UNIX that we have to take into account. So if we have n number of operating systems that we want our program to be compatible, then we also need to have n version of our program.

The platform dependency of earlier computer programs was solved by Java. Java runs through a virtual machine. It’s an interpreted programming language. Therefore, regardless of which platform you have developed and compiled your code, it is expected that it should run on any compatible JVM regardless of which operating system it sits in. This concept became a reality through bytecode encoding. When you compile your Java code, it is translated into bytecode. The Java virtual machine (JVM) will then interpret the bytecode and translate it into machine language. Simple and a lot faster in development isn’t it?

Java maybe great in terms of portability, however there is one big drawback which is its computer resource intensiveness. Because Java runs inside of another program which is the JVM, it is more resource intensive than those traditional programming languages. But because of ease of deployment, faster development and the availability of more powerful server, it outweighs the mentioned disadvantages.

Why we have to Learn Java?

The following are the reasons why you must learn java programming:

    • More than 3 billion devices nowadays are running in Java
    • In corporate world, this is one of the after sought programming languages.
    • Almost all web applications being developed for large companies are in Java
    • Because of above reasons, Java programmers are one of the top highest paid among all IT professions

Target Audience

This reference document is prepared for audiences that started to learn java programming language. We will make the discussion as simple as possible.

Advance topic in Java is also discussed here in JavaTutorialHQ such as the concept of Object Oriented Programming (OOP), Inheritance and Abstraction. These concepts are one of the primary reasons why Java is so popular.

Java examples from basic to advance concept is also available for reference and can definitely help you in learning java programming language. Source codes are provided that you can readily modify to suit your needs.

Disclaimer

This Java tutorial implicitly requires basic understanding what is a computer program and basic computer skills. The author provide information on this document as accurate as possible however it is not guaranteed that all is accurate but the author emphasize a great deal of time and effort to collate these information to provide knowledge that can stand the test of time.