⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checksum.java

📁 苏州大学java学习的ppt课件
💻 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 + -