下面这段代码是源码,我本来想看get()方法是怎么实现的,结果点击get()的时候跑到该类的abstract get()方法中
这个类没有子类吧?起码我是找不到呀,那到底谁实现了这个get()呀  郁闷    public IntBuffer get(int[] dst, int offset, int length) {
checkBounds(offset, length, dst.length);
if (length > remaining())
    throw new BufferUnderflowException();
int end = offset + length;
for (int i = offset; i < end; i++)
    dst[i] = get();
return this;
    }