开发者

methods from one class to ArrayList in another class

I have a Register class contains 8 sets& gets methods using:

public class Register {
  public Register(String Username) {
   JFrame myFrame = new JFrame();
  }

  public void setUname() {
    JoptionPane.showInputDialog(myFrame, "Enter Username");  
  }  

  public String getUname() {
    return  Un开发者_如何学运维ame;  
  }
}  

There are other methods, 8 in total all requiring user input as String or double.

How in another class, can I import the methods into an ArrayList?

public class RegisterApp {  
  public addUser() {  
    ArrayList<Register> MyReg = new Arraylist<Register>();  
    myReg.add(Class Register);  
  }
}

Uncertain really of what goes after myReg.add


You need to add a reference to a Register.

public  class RegisterApp {
  public addUser() {
    ArrayList<Register> MyReg = new Arraylist<Register>();
    //Make an instance of Register and add it to the list
    myReg.add(new Register("Me"));
  }
}

You also mention adding methods to the list. What do you mean by that? What else are you trying to do? Do you want to call those methods on the instances in the list? You can do that like this:

for (Register reg : myReg) {
  System.out.println(reg.getUname());
}

Note:
Your set method doesn't actually save the value anywhere. You are not storing the result in uname (which should be lowecase u). In general, setters are written so they are passed the new value in. This way you are not tied to using an input dialog anytime you change the name. That is a UI decision and should not effect the data model.

public void setUname(String uname) {
  this.usname = uname;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜