checksum.java

来自「苏州大学java学习的ppt课件」· Java 代码 · 共 23 行

JAVA
23
字号
public interface Checksum {    /**     * Updates the current checksum with the specified byte.     */    public void update(int b);    /**     * Updates the current checksum with the specified array of bytes.     */    public void update(byte[] b, int off, int len);    /**     * Returns the current checksum value.     */    public long getValue();    /**     * Resets the checksum to its initial value.     */    public void reset();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?