public interface Checksum
java.util.zip.Checksum |
Known Indirect Subclasses |
表示数据校验和的接口。
Public methods |
|
---|---|
abstract long |
getValue() 返回当前的校验和值。 |
abstract void |
reset() 将校验和重置为其初始值。 |
abstract void |
update(byte[] b, int off, int len) 用指定的字节数组更新当前校验和。 |
abstract void |
update(int b) 用指定的字节更新当前校验和。 |
void update (byte[] b, int off, int len)
用指定的字节数组更新当前校验和。
Parameters | |
---|---|
b |
byte : the byte array to update the checksum with |
off |
int : the start offset of the data |
len |
int : the number of bytes to use for the update |
void update (int b)
用指定的字节更新当前校验和。
Parameters | |
---|---|
b |
int : the byte to update the checksum with |