📄 rectangle.java
字号:
package oesee.teach.java.one.mycookies;
/**
* 方形类
*
* @author chen.jia.xun(Robanco) www.oesee.com
*
*/
public class Rectangle {
// 高度
double height;
// 宽度
double width;
public Rectangle(double height, double width) {
this.height = height;
this.width = width;
}
/**
* 计算面积
*
*/
void area() {
System.out.println(this.height * this.width);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -