IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Collection 集合的使用 -> 正文阅读

[游戏开发]Collection 集合的使用

1. Collection 概述

image-20220321144726967

1.创建 Collection 集合的对象,并添加元素
 public static void main(String[] args) {
        //创建Collection 集合的对象
        Collection<String> c = new ArrayList<String>();

        //添加元素 boolean add(E e)
        c.add("Hello");
        c.add("World");
        c.add("Java");

        System.out.println(c);
        //输出结果: [Hello, World, Java]
    }

2. Collection 集合的常用方法

方法名说明
boolean add(E e)添加元素
boolean remove(Object o)从集合中移除指定的元素
void clear()清空集合中的元素
boolean contains(Object o)判断集合中是否存在指定的元素
boolean isEmpty()判断集合是否为空
int size()集合的长度,集合中元素的个数

2.1 Collection 的使用

    public static void main(String[] args) {
        //创建Collection 集合的对象
        Collection<String> c = new ArrayList<String>();

        //boolean add(E e) 添加元素
        //System.out.println(c.add("Hello")); //输出结果:true
        c.add("Hello");
        c.add("World");
        c.add("World");
        c.add("Java"); //输出结果:true  [Hello, World, World, Java]

        //boolean remove(Object o) 从集合中移除指定的元素
        //c.remove("World"); //输出结果:[Hello, World, Java]

        //void clear()  清空集合中的元素
        //c.clear(); //输出结果:[]

        //boolean contains(Object o)  判断集合中是否存在指定的元素
        //System.out.println(c.contains("Java")); //输出结果: true

        //boolean isEmpty()  判断集合是否为空
        //System.out.println(c.isEmpty()); //输出结果: false

        //int size()   集合的长度,集合中元素的个数
        System.out.println(c.size()); //输出结果: 4


        System.out.println(c);
    }

3. Collection 集合的遍历

3.1 Iterator 迭代器

image-20220321153228365

3.2 迭代器方法

image-20220321154952488

3.3 迭代器使用

 public static void main(String[] args) {
        Collection<String> c = new ArrayList<String>();
        c.add("Hello");
        c.add("World");
        c.add("Java");

        /*boolean hasNext() 如果迭代具有更多元素,则返回 true 。
          E next()   返回迭代中的下一个元素。
        */

        Iterator<String> it = c.iterator();

        /*
        System.out.println(it.next());//输出结果:Hello
        System.out.println(it.next());//输出结果:World
        System.out.println(it.next());//输出结果:Java
        System.out.println(it.next());// NoSuchElementException  被各种访问器方法抛出,表示被请求的元素不存在。
        */

        //改进代码
        while (it.hasNext()){
            //System.out.println(it.next());
            String s = it.next();
            System.out.println(s);
        }
        //输出结果:Hello World Java

    }

4.学生案例

1.学生类

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

    public Student() {
    }

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

    public String getName() {
        return name;
    }

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

    public int getAge() {
        return age;
    }

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

2.测试类

public class StudentDemo {
    public static void main(String[] args) {
        Collection<Student> c = new ArrayList<Student>();

        Student s1 = new Student();
        s1.setName("张嘉圣杰");
        s1.setAge(22);
        Student s2 = new Student("张飘飘", 21);
        Student s3 = new Student("佳洁", 20);

        //把学生添加到集合中
        c.add(s1);
        c.add(s2);
        c.add(s3);

        //遍历集合使用迭代器 Iterator
        Iterator<Student> it = c.iterator();

        while (it.hasNext()) {
            Student s = it.next();
            System.out.println(s.getName() + "\t,\t" + s.getAge());
        }


    }
}

3.输出结果

image-20220321171948567

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-03-24 00:54:10  更:2022-03-24 00:56:24 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 20:45:18-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码