我需要知道的是如何找到数组内部字符串的长度。我也想知道如何在数组中按字母顺序找到哪个字符串。
答案 0 :(得分:4)
myArr[0].length()
这将访问位置0处的字符串,然后获取它的长度。
此外,按字母顺序排序,您可以使用
Arrays.sort(myArr);
答案 1 :(得分:0)
您可以在任何字符串数组元素上使用.length
方法来获取其长度,
要按字母顺序对该数组进行排序,您可以使用.sort
方法 -
例如 -
String[] strings = { "Hello ", "This ", "is", "Sorting", "Example" };
Arrays.sort(strings);
因此,排序后strings[0]
将为Example
而string[0].length()
将为7