You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
1.2 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package mvc»ù´¡1;
/**
* @author The Administrator
* @version 1.0
* @created 26-10ÔÂ-2025 22:49:47
*/
class Student {
private int age;
/**
* 属性(ç§<C3A7>有,通过getter/setter访问ï¼?
*/
private int id;
private String name;
public void finalize() throws Throwable {
}
/**
* æ— å<C2A0>æž„é€ æ¹æ³?
*/
public Student(){
}
/**
* 有å<E280B0>æž„é€ æ¹æ³•(便于åˆå»ºå¯¹è±¡ï¼?
*
* @param id
* @param name
* @param age
*/
public Student(int id, String name, int age){
}
public void delete(){
}
public int getAge(){
return 0;
}
/**
* GetteråŒSetteræ¹æ³•(访问åŒä¿®æ”¹å±žæ€§ï¼‰
*/
public int getId(){
return 0;
}
public String getName(){
return "";
}
/**
* æ•°æ<C2B0>®æ“<C3A6>ä½œæ¹æ³•(ä¾<C3A4>èµDAOå±å®žçŽ°ï¼‰
*/
public void save(){
}
/**
*
* @param age
*/
public void setAge(int age){
}
/**
*
* @param id
*/
public void setId(int id){
}
/**
*
* @param name
*/
public void setName(String name){
}
/**
* é‡<C3A9>写toString,便于打å<E2809C>°å­¦ç”Ÿä¿¡æ<C2A1>?
*/
@Override
public String toString(){
return "";
}
public void update(){
}
}//end Student