ListMultiply.java
01 /*
02  * $Id: ListMultiply.java,v 1.7 2006/08/18 06:46:33 koga Exp $
03  *
04  * Copyright (C) 2004 Koga Laboratory. All rights reserved.
05  *
06  */
07 package matxbook.chap18;
08 
09 import org.mklab.nfc.matx.MatxList;
10 
11 
12 /**
13  @author koga
14  @version $Revision: 1.7 $, 2004/04/20
15  */
16 public class ListMultiply {
17 
18   /**
19    * メインメソッド
20    
21    @param args コマンドライン引数
22    */
23   @SuppressWarnings("nls")
24   public static void main(String[] args) {
25     MatxList x = new MatxList(new Object[] {new Integer(1)new Integer(2)});
26     MatxList y = x.multiply(3);
27     y.print("y");
28   }
29 }