Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java에서 Dictionary 클래스의 중요성?


사전 클래스는 추상 클래스입니다. 키/값을 나타내는 지도 처럼 페어링 및 작동 기존 클래스입니다. 자바에서. 사전 클래스에는 두 가지 중요한 메서드 Dictionary.keys()가 있습니다. 및 Dictionary.elements() t 열거로 모자를 반복할 수 있습니다. . Dictionary 클래스의 다른 중요한 메서드는 isEmpty()입니다. , get() , 제거() 크기() .

구문

public abstract class Dictionary<K,V> extends Object

예시

import java.util.*;
public class DictionaryTest {
   public static void main(String[] args) {
      Dictionary<Integer, String> dic = new Hashtable<Integer, String>();
      dic.put(1, "Adithya");
      dic.put(2, "Jaidev");
      dic.put(3, "Raja");
      Enumeration<Integer> key = dic.keys();
      while(key.hasMoreElements()) {
         System.out.println(key.nextElement());
      }
      Enumeration<String> element = dic.elements();
      while(element.hasMoreElements()) {
         System.out.println(element.nextElement());
      }
   }
}

출력

3
2
1
Raja
Jaidev
Adithya