JAVA PPROGRAMMING IS VERY FUN AS WELL AS TOUGH . LETS GO THROUG SOME POINTS
Java programming: Java program code consists of instructions which will be executed on your computer system to perform a task as an example say arrange given integers in ascending order. This page contains examples for beginners to understand how to use java programming for beginners to write simple Java programs. These codes demonstrate how to get input from user, working with loops, strings and arrays. Programs are provided with output (image file) and you can also download class file and execute it directly without compiling the source file.
Compiling and executing java programs
Java programming software: To compile and run Java program code you need to download JDK (Java Development Kit).
To compile type: javac file_name.java where file_name is name of file containing java source code.
Javac is the Java compiler which converts java code into bytecode.
Javac is the Java compiler which converts java code into bytecode.
To run type: java main_method_class where main_method_class is the name of class which defines main method.
Learn Java through books
If you are just starting to learn Java then it is recommended to buy Java programming book
. A Java book will help you to easy learn basic concepts and will act as a reference for all time.
Java programming examples
Example 1: Display message on computer screen.
This is similar to hello world java program. Download java programming class file.
Output of program:

Example 2: Print integers
Output:

If else control instructions:
Output:

Command line arguments:
Java programming language
Below is the list of java programs which will help you in learn java programming language.
- Hello World
- If else
- For loop
- While loop
- Print Alphabets
- Print Multiplication Table
- Get Input From User
- Addition
- Find Odd or Even
- Fahrenheit to celsius
- Java Methods
- Static Block
- Static Method
- Multiple classes
- Java constructor tutorial
- Java exception handling tutorial
- Swapping
- Largest of three integers
- Enhanced for loop
- Factorial
- Primes
- Armstrong number
- Floyd's triangle
- Reverse String
- Palindrome
- Compare Strings
- Linear Search
- Binary Search
- Substrings of string
- Display date and time
- Random numbers
- Garbage Collection
- IP Address
- Reverse number
- Add Matrices
- Transpose Matrix
- Multiply Matrices
- Bubble sort
- Open notepad
Java Development IDE
As your programming experience grows in Java you may be developing your own project or software, using a simple text editor is not recommended. Following are two popular and open source IDE's:
Using IDE helps you a lot while coding as they offer many useful features such as you can create GUI in Netbeans without writing any code, Netbeans will show you any compilation error before you compile your code and it can also show hints on how to fix that.
Java programming tutorial
Java technology has changed our life as most of devices we use today includes java that's why to learn java programming is a good thing. Java was developed by Sun Microsystems but now owned by Oracle. Here is a quick java tutorial for beginners, Java is an object oriented computer programming like C++, if you already know C++ or any other object oriented language then it will be easier for you to learn java. Java program consists of classes which contain functions, you can't write a function outside a class. Objects are instances of classes. Consider the following code:
There is a ProgrammingLanguage class and all programming languages will be instances of this class. We have considered only two attributes language name and type, we can create instances of class using new keyword. There is a constructor method which is invoked when an object of class is created we use it to name the programming language and its type. Main method is a must and acts as starting point of program, display method is used to print information about programming language object. Class names in java begin with a capital letter and if there are more words in class then their first letter will also be capital, for example MyJavaClass is a class name and for methods (functions in C or C++) first letter is small and other words first letter is capital as an example myJava is method name. These are only conventions, but are useful in distinguishing classes from methods. Java has a very rich API to build desktop and web applications.
No comments:
Post a Comment