01 /*
02 * $Id: ListSize.java,v 1.7 2006/08/18 06:46:32 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 ListSize {
17
18 /**
19 * メインメソッド
20 *
21 * @param args コマンドライン引数
22 */
23 @SuppressWarnings("nls")
24 public static void main(String[] args) {
25 MatxList x = new MatxList(3);
26 System.out.println("size(x) = " + x.size());
27 }
28 }
|