Sunday, November 9, 2008

Beginning Classes in Java: Part 2



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

public class vn4000Class() {
public void printString(String str) {
System.out.println(str);
}
}