📄 keyeduos.java
字号:
/* KeyedUos.java
* ---------------------------------------------
* Copyright (c) 2001 University of Saskatchewan
* All Rights Reserved
* --------------------------------------------- */
package dslib.base;
/** A class which includes a key function and a setKey procedure
to change the key */
public interface KeyedUos
{
/** Key of the item */
public Comparable key();
/** Set the key to be newKey.
@param newKey the new key value for the current item */
public void setKey(Comparable newKey);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -