search
HomeJavajavaTutorialArrayList collection
ArrayList collectionJun 26, 2017 am 09:52 AM
arraylistgather

The reason why sets appear
Arrays store data in fixed storage. When the number of data to be stored is uncertain, the array is not satisfied, and sets appear
Sets The number of stored data can change as the amount of data changes, without causing cross-border or a large amount of space waste
The number of stored data is variable

ArrayList:
Under the java.util package
The bottom layer maintains an array
The thread is not synchronized (fast processing speed)

Format of creating ArrayList object:
ArrayList< ;E> Collection name = new ArrayList();
: Generic, represents the data type to be stored in the collection. Change E to the type you want to store. If you want to store For String type data, change E to String


Note: Collections can only store reference type data


Basic data types Corresponding reference data type representation
byte Byte
short Short
int Integer
long Long
float Float
double Double
char Character
boolean Boolean

Common functions of ArrayList
Add
public boolean add(E e)
public void add(int index,E element) // Add at the specified index position Element

Get the element
public E get(int index)//Get the element based on the index value


Get the number of elements
public int size() //Get Number of elements

Delete elements
public boolean remove(Object o) //Delete elements directly
public E remove(int index) //Delete elements based on index and return the deleted elements

Modify elements
public E set(int index,E element)//Use element to replace the element at the specified index and return the replaced element

Student Management System Exercise
Student information includes: student ID, name, age, hometown
Print welcome statement
Print corresponding functions, and receive user input

1. View student information
If the system If there is no student information, the corresponding prompt will be given
If there is student information in the system, the student information will be printed in the specified format
2. Add student information
Enter the student's information from the keyboard to form an object and add it to the collection
Remove duplicates based on student numbers. Only non-duplicated student numbers can be added to the collection

3. Modify student information
Find the student based on the student number and modify it
If there is no student number, give Prompt the corresponding prompt
If the student number is found, continue to collect new information and use the new information to modify the original elements
4. Delete student information
Delete the student based on the student number
If no student number is specified, give Out the specified prompt
If there is a student number, delete the specified element
5. Exit the student information management system
Prompt to exit
and end the program
Code demonstration

  1 public static void main(String[] args) {  
  2         // 初始化数据  
  3         // 创建一个集合容器 可以存储学生的信息  
  4         ArrayList<student> list = new ArrayList<student>();  
  5         // =========================测试数据================================  
  6 //        Student s1 = new Student("9001", "阿拉甲", "18", "迪拜");  
  7 //        Student s2 = new Student("9002", "阿拉yi", "18", "迪拜");  
  8 //        Student s3 = new Student("9003", "阿拉饼", "18", "迪拜");  
  9 //        list.add(s1); 
  10 //        list.add(s2); 
  11 //        list.add(s3); 
  12 //        System.out.println("初始化完毕"); 
  13         // =========================测试数据================================ 
  14  
  15         System.out.println("-------------------欢迎使用学生管理系统------------------------"); 
  16  
  17         // 死循环
  18         while (true) { 
  19             // 展示功能菜单 
  20             System.out.println("================================="); 
  21             System.out.println("1.查看学生信息"); 
  22             System.out.println("2.添加学生信息"); 
  23             System.out.println("3.修改学生信息"); 
  24             System.out.println("4.删除学生信息"); 
  25             System.out.println("5.退出学生信息管理系统");
   26             System.out.println("请输入对应功能的序号"); 
   27             System.out.println("================================="); 
   28             // 接收用户的输入 
   29             Scanner sc = new Scanner(System.in); 
   30             int user = sc.nextInt(); 
   31             // 根据用户的输入进行功调用 
   32             switch (user) { 
   33             case 1: 
   34                 show(list); 
   35                 break; 
   36             case 2: 
   37                 add(list); 
   38                 break; 
   39             case 3: 
   40                 upd(list); 
   41                 break; 
   42             case 4: 
   43                 del(list); 
   44                 break; 
   45             case 5: 
   46                 System.out.println("感谢使用管理系统 欢迎下次再来哦  "); 
   47                 // 终止虚拟机 
   48                 System.exit(0); 
   49                 // return; 
   50                 break; 
   51  
   52             default: 
   53                 System.out.println("对不起 没有这个功能 ,请控制你自己 "); 
   54                 break; 
   55             } 
   56         } 
   57     } 
   58  
   59     // 功能方法s 
   60     public static void del(ArrayList<student> list) { 
   61         // 1.提示输入学号
   62         Scanner sc = new Scanner(System.in); 
   63         System.out.println("请输入学号"); 
   64         String id = sc.next(); 
   65 
   66         // 2.查找
   67         // 定义标记 
   68         int index = -1; 
   69         // 遍历比较 并修改 
   70         for (int i = 0; i  list) { 
   92         // 1.提示输入学号 
   93         Scanner sc = new Scanner(System.in); 
   94         System.out.println("请输入学号"); 
   95         String id = sc.next(); 
   96  
   97         // 2.查找 
   98         // 定义标记 
   99         int index = -1;
   100         // 遍历并比较
   101         for (int i = 0; i  list) {
   134         // 1.提示输入学号
   135         Scanner sc = new Scanner(System.in);
   136         System.out.println("请输入学号");
   137         String id = sc.next();
   138         // 2.根据学号去重
   139 
   140         // 使用用户输入的学号去集合中查找, 如果找到与用户输入的学号一样的学号表示有重复,此时要继续提示输入学号,并继续去重
   141         // 直到用户输入的学号与集合中元素的学号不一致的时候再收集其他的信息
   142         while (true) {
   143             // 定义一个标记 给一个默认值
   144             int index = -1;
   145             // 遍历集合获取元素的学号与用户输入的学号进行比较
   146             for (int i = 0; i  list) {
   182         // 1.判断集合是否有元素
   183         if (list.size() == 0) {
   184             // 如果没有给出特定的提示
   185             System.out.println("系统中没有学生的信息,请选择添加功能");
   186         } else {
   187             // 如果有就按照指定格式遍历
   188             System.out.println("================学生信息如下====================");
   189             System.out.println("学号\t\t姓名\t\t年龄\t\t家乡");
   190             // 遍历集合获取学生信息
   191             for (int i = 0; i </student></student></student>


The above is the detailed content of ArrayList collection. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Java ArrayList遍历时使用foreach和iterator删除元素的区别是什么?Java ArrayList遍历时使用foreach和iterator删除元素的区别是什么?Apr 27, 2023 pm 03:40 PM

一、Iterator和foreach的区别多态差别(foreach底层就是Iterator)Iterator是一个接口类型,他不关心集合或者数组的类型;for和foreach都需要先知道集合的类型,甚至是集合内元素的类型;1.为啥说foreach底层就是Iterator编写的代码:反编译代码:二、foreach与iterator时remove的区别先来看阿里java开发手册但1的时候不会报错,2的时候就会报错(java.util.ConcurrentModificationException)首

如何在Java中检查ArrayList是否包含某个元素?如何在Java中检查ArrayList是否包含某个元素?Sep 03, 2023 pm 04:09 PM

您可以利用List接口的contains()方法来检查列表中是否存在对象。contains()方法booleancontains(Objecto)如果此列表包含指定的元素,则返回true。更正式地说,如果且仅当此列表包含至少一个元素e,使得(o==null?e==null:o.equals(e)),则返回true。参数c-要测试其在此列表中是否存在的元素。返回值如果此列表包含指定的元素,则返回true。抛出ClassCastException-如果指定元素的类型与此列表不兼容(可选)。NullP

如何优化Java集合排序性能如何优化Java集合排序性能Jun 30, 2023 am 10:43 AM

Java是一种功能强大的编程语言,广泛应用于各类软件开发中。在Java开发中,经常会涉及到对集合进行排序的场景。然而,如果不对集合排序进行性能优化,可能会导致程序的执行效率下降。本文将探讨如何优化Java集合排序的性能。一、选择合适的集合类在Java中,有多种集合类可以用来进行排序,如ArrayList、LinkedList、TreeSet等。不同的集合类在

使用java的ArrayList.remove()函数移除ArrayList中的元素使用java的ArrayList.remove()函数移除ArrayList中的元素Jul 24, 2023 pm 01:21 PM

使用java的ArrayList.remove()函数移除ArrayList中的元素在Java中,ArrayList是一种常用的集合类,用于储存和操作一组元素。ArrayList类提供了许多方法来增删改查集合中的元素。其中一个使用频率较高的方法是remove(),它可以移除ArrayList中的元素。ArrayList的remove()方法有两种重载形式,一

使用java的ArrayList.clear()函数清空ArrayList中的元素使用java的ArrayList.clear()函数清空ArrayList中的元素Jul 24, 2023 pm 02:04 PM

使用Java的ArrayList.clear()函数清空ArrayList中的元素在Java编程中,ArrayList是一种非常常用的数据结构,它可以动态地存储和访问元素。然而,在某些情况下,我们可能需要清空ArrayList中的所有元素,以便重新使用或释放内存。这时,就可以使用ArrayList的clear()函数来实现。ArrayList.clear()

使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中Jul 24, 2023 am 08:58 AM

使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中HashSet是Java集合框架中的一个实现类,它继承自AbstractSet,并实现了Set接口。HashSet是一个基于哈希表的无序集合,其中不允许包含重复的元素。它提供了许多常用的方法来操作集合中的元素,其中之一就是addAll()方法。addAll()方法的作用是将指定

Java中ArrayList初始化容量大小为10的原因是什么Java中ArrayList初始化容量大小为10的原因是什么May 10, 2023 pm 02:19 PM

为什么HashMap的初始化容量为16?在聊ArrayList的初始化容量时,要先来回顾一下HashMap的初始化容量。这里以Java8源码为例,HashMap中的相关因素有两个:初始化容量及装载因子:/***Thedefaultinitialcapacity-MUSTbeapoweroftwo.*/staticfinalintDEFAULT_INITIAL_CAPACITY=1>1);if(newCapacity-minCapacity0)newCapacity=hugeCapacity

Java使用ArrayList类的contains()函数判断元素是否存在Java使用ArrayList类的contains()函数判断元素是否存在Jul 24, 2023 pm 07:33 PM

Java使用ArrayList类的contains()函数判断元素是否存在在Java编程中,ArrayList是一个非常常用的数据结构。它提供了一种灵活的方法来存储和操作一组数据。除了简单的添加、删除和访问元素之外,ArrayList还提供了一些有用的方法,例如contains()函数,用于判断元素是否存在于ArrayList中。contains()函数是A

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.