package org.apache.hadoop.io;
import java.util.Comparator;
import org.apache.hadoop.io.serializer.DeserializerComparator;
public interface RawComparator<T> extends Comparator<T> {
public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2);
}
实现对对象的字节表示进行直接操作。
byte[] b1 是要进行比较的字节数组。s1表示b1的起始位置,l1表示b1的长度。
b2同上。