我创建了一个简单的Profile类,它采用名称String和age int。如果用户创建了2个配置文件,我如何在按钮中显示它们,以便他们可以选择配置文件。如果用户删除或创建新的配置文件,我还将如何更新按钮。
这是我有的Profile类
class Profile {
String name;
int age;
public Profile(String name, int age){
this.name = name;
this.age = age;
}
public Profile(String name){
this.name = name;
}
public Profile(int age){
this.age = age;
}
public Profile(){
}
private void setName(String name){
this.name = name;
}
private String getName(){
return name;
}
private void setAge(int age){
this.age = age;
}
private int getAge(){
return age;
}
}
我有一个配置文件列表,每次用户创建一个帐户时都会更新,所以如何将多个配置文件显示为按钮,以便用户可以选择一个配置文件?
答案 0 :(得分:0)
你可以创建ProfileList类并添加addProfile(Profile p),showProfile(JFrame窗口)等方法 什么你用awt,摆动???