📄 shapeinterface.java
字号:
// Chapter 6 Exercise 3
// Declares methods to be implemented by a shape:
public interface ShapeInterface
{
void move(double xDelta, double yDelta); // Method to move a shape
void show(); // Method to display a shape.
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -