?? rectangle.java
字號:
class Rectangle
{
int iHeight,iWide;
Rectangle( int height, int wide)
{
iHeight = height;
iWide = wide;
}
int GetLen()
{
return 2*(iHeight+iWide);
}
int GetArea()
{
return iHeight*iWide;
}
public static void main(String[]args)
{
Rectangle d1 = new Rectangle(1,2);
System.out.println("My Rectantgle=" + d1.GetLen());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -