深圳软件测试培训:java中数组的操作一.数组最常见的一个操作就是遍历。因为数组的每个元素都可以通过索引来访问,通过for循环就可以遍历数组。public class M { public st
一.数组最常见的一个操作就是遍历。
因为数组的每个元素都可以通过索引来访问,通过for循环就可以遍历数组。
public class M {
public static void main(String[] args) {
int[] ns = { 1, 3, 2, 6, 5 };
for (int i=0; i<ns.length; i++) {
int n = ns[i];
System.out.println(n);
}
}
}
运行结果:
1
3
2
6
5
第二种方式是使用for each循环,直接迭代数组的每个元素:
public class M{
public static void main(String[] args) {
int[] ns = { 1, 3, 2, 6, 5 };
for (int n : ns) {
System.out.println(n);
}
}
}
运行结果:
1
3
2
6
5
二.数组另外最常见的一个操作就是排序。
冒泡排序算法对一个数组从小到大进行排序:
import java.util.Arrays;
public class M{
public static void main(String[] args) {
int[] ns = { 1, 3, 2, 6, 5};
//排序前
for (int n : ns) {
System.out.println(n);
}
for (int i = 0; i < ns.length - 1; i++) {
for (int j = 0; j < ns.length - i - 1; j++) {
if (ns[j] > ns[j+1]) {
int tmp = ns[j];
ns[j] = ns[j+1];
ns[j+1] = tmp;
}
}
}
//排序后
for (int n : ns) {
System.out.println(n);
}
}
}
运行结果:
1
3
2
6
5
1
2
3
5
6
Java内置了排序功能,使用Arrays.sort排序:
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
int[] ns = { 1,3,2,6,5};
Arrays.sort(ns);
for (int n : ns) {
System.out.println(n);
}
}
}
运行结果:
1
2
3
5
6
--结束END--
本文标题: 深圳软件测试培训:java中数组的操作
本文链接: https://lsjlt.com/news/240590.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0