📄 checksum.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -