clock.java

来自「国外的数据结构与算法分析用书」· Java 代码 · 共 26 行

JAVA
26
字号
package SystemEntities;

/**	A simple clock.  The current implementation is defined 	
	just return a progressively larger value every time 
	the time() or date() routines are called. */
public class Clock
{

	/**	The current time */
	static int currentTime;

	/**	Return the current time. */
	public static int time()
	{
		currentTime += 10;
		return currentTime;
	}

	/**	Returns the current date */
	public static int date()
	{
		currentTime += 2400;
		return currentTime;
	}
}

⌨️ 快捷键说明

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