📄 people.java
字号:
/*
* People.java
*
* Created on 2008年3月12日, 下午12:27
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package eight;
import java.awt.Point;
/**
*
* @author 刘杨
*/
public class People implements java.io.Serializable{
String name=null;
int time=0;
/** Creates a new instance of People */
public People(String name,int time) {
this.name=name;
this.time=time;
}
public int getTime(){
return time;
}
public String getName(){
return name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -