Now I have 3object
user[0] = new user("a", "a");
user[1] = new user("b", "b");
user[2] = new user("c", "c");
there have many variable in the object such as: age, name, email
then the program is running.....
user[0].setAge(6);
user[1].setAge(5);
user[2].setAge(7);
how can I get the young to old user name?
the exception return: b,a,c