位置:首頁 > Java技術 > java實例教學 > Java如何打印集合?

Java如何打印集合?

如何打印一個集合?

解決方法

下麵的例子如何使用Java Util類的 tMap.keySet(),tMap.values() 和 tMap.firstKey() 打印集合。

import java.util.*;

public class TreeExample{
   public static void main(String[] args) {
      System.out.println("Tree Map Example!
");
      TreeMap tMap = new TreeMap();
      tMap.put(1, "Sunday");
      tMap.put(2, "Monday");
      tMap.put(3, "Tuesday");
      tMap.put(4, "Wednesday");
      tMap.put(5, "Thursday");
      tMap.put(6, "Friday");
      tMap.put(7, "Saturday");
      System.out.println("Keys of tree map: " 
      + tMap.keySet());
      System.out.println("Values of tree map: " 
      + tMap.values());
      System.out.println("Key: 5 value: " + tMap.get(5)+ "
");
      System.out.println("First key: " + tMap.firstKey() 
      + " Value: " 
      + tMap.get(tMap.firstKey()) + "
");
      System.out.println("Last key: " + tMap.lastKey() 
	  + " Value: "+ tMap.get(tMap.lastKey()) + "
");
      System.out.println("Removing first data: " 
      + tMap.remove(tMap.firstKey()));
      System.out.println("Now the tree map Keys: " 
      + tMap.keySet());
      System.out.println("Now the tree map contain: " 
      + tMap.values() + "
");
      System.out.println("Removing last data: " 
      + tMap.remove(tMap.lastKey()));
      System.out.println("Now the tree map Keys: " 
      + tMap.keySet());
      System.out.println("Now the tree map contain: " 
      + tMap.values());
   }
}

結果

上麵的代碼示例將產生以下結果。

C:collection>javac TreeExample.java

C:collection>java TreeExample
Tree Map Example!

Keys of tree map: [1, 2, 3, 4, 5, 6, 7]
Values of tree map: [Sunday, Monday, Tuesday, Wednesday, 
Thursday, Friday, Saturday]
Key: 5 value: Thursday

First key: 1 Value: Sunday

Last key: 7 Value: Saturday

Removing first data: Sunday
Now the tree map Keys: [2, 3, 4, 5, 6, 7]
Now the tree map contain: [Monday, Tuesday, Wednesday,
Thursday, Friday, Saturday]

Removing last data: Saturday
Now the tree map Keys: [2, 3, 4, 5, 6]
Now the tree map contain: [Monday, Tuesday, Wednesday,
Thursday, Friday]

C:collection>