这段代码是在看视频的过程中看到的非常的不理解还望赐教
interface Map
{
public static interface Entry
{
public abstract Object getKey();
public abstract Object getValue();
}
}
class HashMap implements Map
{
class Hah implements Map.Entry
{
@Override
public Object getKey()
{
// TODO Auto-generated method stub
return null;
}
@Override
public Object getValue()
{
// TODO Auto-generated method stub
return null;
}
}
}
|