Saturday, September 13, 2008

Java 03: Functions



Here is an example of Java method. Please understand that it is NOT a part of the above video clip. It is provided for education purpose only.


public static void printString(){
System.out.println("Java from vn4000 website");
System.out.println("For all your learning");
System.out.println("Here is a function");
System.out.println("You are learning Java");

}