publicclassWelcome{publicstaticvoidmain(String[] args){String[] greeting =newString[3];
greeting[0]="This is the greeting";
greeting[1]="for all the readers from";
greeting[2]="Java Source .";for(int i =0; i < greeting.length; i++){System.out.println(greeting[i]);}}}
结果
上面的代码示例将产生以下结果。
This is the greeting
For all the readers FromJava source .