0% found this document useful (0 votes)
6 views1 page

Ile 2

This Java tutorial is designed for beginners to advanced programmers, offering practical examples to facilitate learning. It covers a wide range of topics, from basic concepts to advanced programming techniques, and aims to elevate learners' expertise in Java. Java is a versatile, high-level programming language used across various platforms and applications, emphasizing the principle of 'Write Once, Run Anywhere.'

Uploaded by

PT A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Ile 2

This Java tutorial is designed for beginners to advanced programmers, offering practical examples to facilitate learning. It covers a wide range of topics, from basic concepts to advanced programming techniques, and aims to elevate learners' expertise in Java. Java is a versatile, high-level programming language used across various platforms and applications, emphasizing the principle of 'Write Once, Run Anywhere.'

Uploaded by

PT A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Java Tutorial

About the Tutorial


This Java tutorial has been written for beginners to advanced programmers who are
striving to learn Java programming. We have provided numerous practical examples to
explain the concepts in simple and easy steps. This tutorial has been prepared and
reviewed by experienced Java programmers at Tutorials Point, and the best effort has
been put into making it useful for the students and Java developers.
After completing this tutorial, you will find yourself at a moderate level of expertise in Java
programming, from where you can elevate yourself to the next levels.

What is Java?
Java is a popular high-level, object-oriented programming language that was originally
developed by Sun Microsystems and released in 1995. Currently, Java is owned by Oracle,
and more than 3 billion devices run Java. Java runs on a variety of platforms, such
as Windows, Mac OS, and the various versions of UNIX. Today Java is being used to
develop numerous types of software applications, including desktop apps, mobile apps,
web apps, games, and much more.

Java is a general-purpose programming language intended to let


programmers Write Once, Run Anywhere (WORA). This means that compiled Java code
can run on all platforms that support Java without the need to recompile.

In this tutorial, you will learn everything about Java, starting from basics to advanced
concepts such as overview, history, installations, basic input/output, conditional & control
statements, arrays, classes, inheritance, method overloading & overriding, exception
handling, and many more.

Java First Example


The first example in Java is to print "Hello, World!" on the screen. Let's have a quick look
at the first example in Java programming:

public class MyFirstJavaProgram {

/* This is my first java program.


* This will print 'Hello, World!' as the output
*/

public static void main(String []args) {


System.out.println("Hello, World!"); // prints Hello, World!
}
}

Getting Started with Java


Explore the following chapters to get started learning Java programming:

You might also like