?? example24_1.java~
字號:
/** * Write a description of class Example24_1 here. * * @author (your name) * @version (a version number or a date) */public class Example24_1{ // instance variables - replace the example below with your own private int x; /** * Constructor for objects of class Example24_1 */ public Example24_1() { // initialise instance variables x = 0; } /** * An example of a method - replace this comment with your own * * @param y a sample parameter for a method * @return the sum of x and y */ public int sampleMethod(int y) { // put your code here return x + y; }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -