Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java中有没有一种方法可以在没有循环的情况下读取数组,例如获取第一个带有索引的条目?
Object[] array = keySet.toArray();
就像是
array.get(5);
我知道 get 不适用于当前的 APi,但也许有不同的方法来实现它?
使用方括号语法
Object first = array[0];
尝试array[5]获取我们可以通过索引获取数组值的值。Asarray[5]本身就是一个对象,您可以将其分配给任何其他对象,例如
array[5]
`Object obj = array[5]; obj.callMethods()`
我想你正在寻找的是array[5].