You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package 集 合 框 架 ( LSP ) ;
/**
* TreeMap瀹炵幇绫伙紙绠€鍖栫増锛?
* @author 方初阳
* @version 1.0
* @created 23-10月-2025 21:36:22
*/
public class TreeMap < K , V > implements Map < K , V > {
/**
* @author 方初阳
* @version 1.0
* @created 23-10月-2025 21:36:22
*/
public static class Entry < K , V > implements Entry {
public Entry ( ) {
}
public void finalize ( ) throws Throwable {
}
@Override
public K getKey ( ) {
return null ;
}
@Override
public V getValue ( ) {
return null ;
}
/**
*
* @param value
*/
@Override
public V setValue ( V value ) {
return null ;
}
} //end Entry
public TreeMap ( ) {
}
public void finalize ( ) throws Throwable {
}
/**
*
* @param key
*/
@Override
public V get ( Object key ) {
return null ;
}
@Override
public Set < K > keySet ( ) {
return null ;
}
/**
*
* @param key
* @param value
*/
@Override
public V put ( K key , V value ) {
return null ;
}
/**
*
* @param key
*/
@Override
public V remove ( Object key ) {
return null ;
}
@Override
public Collection < V > values ( ) {
return null ;
}
} //end TreeMap