我是靠谱客的博主 受伤银耳汤,最近开发中收集的这篇文章主要介绍【JAVA】ArrayList集合遍历例题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

参考视频链接

案例1:存储字符串并遍历

//通用格式
for(int i=0;i<集合对象.size();i++){
	集合对象.get(i) 就是指定索引处的元素
}
public static void main(String[] args){
        ArrayList<String> str=new ArrayList<>();
        str.add("xyj");
        str.add("一定");
        str.add("能进");
        str.add("阿里");

        for(int i=0;i<str.size();i++) {
            System.out.print(str.get(i));
        }
    }

案例2:存储学生对象并遍历

创建一个student类

public class Student {
    private String name;
    private int age;

    public Student(){};

    public Student(String name,int age){
        this.name=name;
        this.age=age;
    }

    public void setName(String name){
        this.name=name;
    }

    public String getName(){
        return name;
    }

    public void setAge(int age){
        this.age=age;
    }

    public int getAge(){
        return age;
    }
}

在主函数中进行遍历

import java.util.ArrayList;

/**
 * 定义学生类
 * 创建集合对象
 * 创建学生对象
 * 添加学生对象到集合中
 * 遍历集合
 */
public class ArrayTest {
    public static void main(String[] args){
        ArrayList<Student> array = new ArrayList<>();

        Student s1=new Student("柯西",5);
        Student s2=new Student("拉格朗日",3);
        Student s3=new Student("罗尔",8);

        array.add(s1);
        array.add(s2);
        array.add(s3);

        for(int i=0;i<array.size();i++){
            Student s=array.get(i);
            System.out.println(s.getName()+":"+s.getAge());
        }
    }
}

这两篇文章是我在自学过程中遇到了不明白的问题进行的巩固,我现在觉着对ArrayList的理解算是比较透彻了(之前一直模模糊糊懵懵懂懂),跟我一起学习的小伙伴们如果有看了我这两篇博文还不是很懂的可以再来问我哦。

起飞!

最后

以上就是受伤银耳汤为你收集整理的【JAVA】ArrayList集合遍历例题的全部内容,希望文章能够帮你解决【JAVA】ArrayList集合遍历例题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部