我真的需要你的帮助。真的不知道如何描述问题。所以我有一个数组
public static final Server[] SERVERS = {
new Server(0, "Test0", "localhost", "00000", "client"),
new Server(1, "Test1", "localhost", "00001", "client"),
new Server(2, "Test2", "localhost", "00002", "client")
};
我如何从该数组获取Test0,Test1和Test2?我考虑过SERVERS [2],但这将选择整个对象。我不知道如何得到它。
非常感谢您的帮助。预先感谢您:3
附注:例如:
t be scared of a title, cause I don
我怎么称呼那个放在方括号中的东西?我的意思是“ abc”的专有名称是什么?参数?变量?
最佳答案
请记住,服务器是服务器的数组,因此您可以执行SERVERS [x],这将使您能够访问位于给定索引x的服务器对象。
之后,您只需要使用吸气剂,例如:
String name = SERVERS[2].getName();
int index = SERVERS[2].getIndex();
//etc etc
关于java - 从对象获取参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44345944/