Java Hashtable toString()方法

java.util.Hashtable.toString() 返回Hashtable对象的字符串表示形式。

1 语法

public String toString()

2 参数

3 返回值

返回Hashtable对象的字符串表示形式。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Hashtable.toString()方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String args[]) {

        // create hash table
        Hashtable htable = new Hashtable(3);

        // populate the table
        htable.put(1, "TP");
        htable.put(2, "IS");
        htable.put(3, "THE");
        htable.put(4, "BEST");
        htable.put(5, "TUTORIAL");

        System.out.println("String form of hash table is: "+htable.toString());
    }
}

输出结果为:

String form of hash table is: {5=TUTORIAL, 4=BEST, 3=THE, 2=IS, 1=TP}

热门文章

优秀文章