people.java
来自「八皇后源代码 JAVA课设 应该满足您的要求」· Java 代码 · 共 33 行
JAVA
33 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?