JAVA tutorial for beginners


Java

_Definition_______________________________

is a high-level programming language originally developed by Sun Micro systems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This tutorial gives a complete understanding of Java.
This reference will take you through simple and practical approaches while learning Java Programming language.
________________________________________

__General Rules___________________________



  • All global variables must declared and initialized at the beginning of the program
  • The main function must be the last method in the program.
  • All other methods must be between the class beginning and the main  method
  • The main method is for creating and initializing variables, calling methods, and terminating the program
  • The term class is used inclusively to mean an "ordinary" class, enum class, interface or annotation type
  • the of main class is the same name of the file or project 
  • programming in java is   Object oriented programming 
example:::
public class Hello World { 
   public static void main(String[] args) {
          System.out.println("Hello, World");   
                                        }
                                        }
________________________________________
-----------------------------------------                     -----------------------------------------------------------------
If you have any problem learning C language, just ask us on Facebook or any social networking site we are here to help
------------------------------------------------                                    -----------------------------------------------


In the next lesson we will enter the second part of the C language and do not forget our follow-ups on Facebook and Twitter

No comments:

Post a Comment

Pages