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很陌生。 我有字符串数组,单词 [i]。 如何立即将每个值存储为变量?
如果您想访问数组中的任何单词,那么您可以这样做。您不需要为它们提供所有变量名称。例如,假设你有你的 words 数组。要将单词数组中的第三个单词打印到控制台:
System.out.println(words[2]);
注意数组中的第一个元素是元素 0。
您已经将值存储为变量,它们被称为:
word[0] word[1] word[2] word[3] word[4] word[5]
…</p>