?? checksum.java
字號(hào):
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();}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -