finaltest.java
来自「Practical Java也是一本和J2ME手机游戏开发相关的书」· Java 代码 · 共 13 行
JAVA
13 行
public class FinalTest
{
private static final Circle wheel = new Circle(5.0);
public static void main(String args[])
{
System.out.println("Radius of wheel is " +
wheel.radius());
wheel = new Circle(7.4);
System.out.println("Radius of wheel is now " +
wheel.radius());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?