新しいプロパティによる配列のサポート(可変パラメータの使用、foreach出力の使用)


1.可変パラメータ
public class NewDemo01{
	public static void main(String args[]){
		System.out.print("     (fun()):") ;
		fun() ;			//      
		System.out.print("
(fun(1)):") ; fun(1) ; // System.out.print("
(fun(1,2,3,4,5)):") ; fun(1,2,3,4,5) ; } public static void fun(int ... arg){ // for(int i=0;i

2.foreach
public class NewDemo02{
	public static void main(String args[]){
		System.out.print("     (fun()):") ;
		fun() ;			//      
		System.out.print("
(fun(1)):") ; fun(1) ; // System.out.print("
(fun(1,2,3,4,5)):") ; fun(1,2,3,4,5) ; } public static void fun(int ... arg){ // for(int x:arg){ // foreach System.out.print(x + "、") ; } } };

foreachは配列を出力するだけでなく,クラスセットにおいても出力する能力がある.