package sec04_exam02_generic_method; public class Pair { private K key; private V value; public Pair(K key, V value) { this.key = key; this.value = value; } public void setKey(K key) { this.key = key; } public void setValue(V value) {this.value = value; } public K getKey() { return key; } public V getValue() { return value; } } package sec04_exam02_generic_method; public class Utill { //제너릭 메소드 ..