JDK源码阅读-------自学笔记(五)(浅析数组)
一、数组基础
1、定义和特点
- 数组也可以看做是对象,数组变量属于引用类型,数组中每个元素相当于该队形的成员变量,数组对象存储在堆中.
2、初始化数组
- 常用类初始化
// 整型初始化
int[] integerInitialization = new int[10]; - 对象初始化
// 对象初始化
User[] usersInitialization = new User[10];
3、数组赋值
- 动态初始化(根据数组角标)
// 整型初始化
int[] integerInitialization = new int[10]; // 整型赋值
integerInitialization[0] = 1;
integerInitialization[1] = 2; - 循环赋值
// 整型初始化
int[] integerInitialization = new int[10]; // 循环赋值
for (int i = 0; i < integerInitialization.length; i++) {
integerInitialization[i]=10*i;
} - 静态初始化
常用类初始化// 整型初始化
int[] integerInitialization = {1,2,3,4,5,6,7,8,9};对象初始化
// 对象静态初始化
User[] usersInitialization ={new User(101,"龙五"),new User(102,"李四")}; - 默认初始化
注意:当默认初始化的时候,会按照设置的数组大小自动填入数组长度多个0,布尔型为false,引用型为null.// 默认初始化
int[] integerInitialization = new int[3]; // 测试查看默认值
System.out.println("第一个元素"+integerInitialization[0]);
System.out.println("第二个元素"+integerInitialization[1]);
System.out.println("第三个元素"+integerInitialization[2]);
4、数组遍历取值
- 循环
// 整型初始化
int[] integerInitialization = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // 循环获取元素
for (int i = 0; i < integerInitialization.length; i++) {
System.out.println("第" + (i + 1) + "个元素" + integerInitialization[i]);
} - foreach语句
// 整型初始化
int[] integerInitialization = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // foreach获取元素
for (int i : integerInitialization) {
System.out.println("第" + i + "个元素" + i);
}
二、数组拷贝
- 容器拷贝,底层就是数组拷贝
- 使用方法
源码分析:/**
* @param src 源数组(从这个数组中拷出元素).
* @param srcPos 源数组起始位置.
* @param dest 目的数组(拷贝到这里元素).
* @param destPos 目的数组起始位置.
* @param length 拷贝数组的长度(拷贝多少个元素到目的数组).
* @throws IndexOutOfBoundsException 拷贝会产生数组越界的异常.
* @throws ArrayStoreException 源数组和目的数组类型要一致,否则,会产生类型不一致的异常.
* @throws NullPointerException 源数组和目的数组中有一个为空,就会产生空指针异常.
*/
public static native void arraycopy(Object src, int srcPos,
Object dest, int destPos,
int length);使用实例:
// 整型初始化
int[] integerInitialization = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // 目的数组默认初始化
int[] destPosition = new int[10]; // 数组拷贝,从integerInitialization的第一个位置起拷贝8个元素到目的数组第二个位置起
System.arraycopy(integerInitialization, 0, destPosition, 1, 8); System.out.println("数组中得到的拷贝元素:" + Arrays.toString(destPosition)); - 数组删除的本质,也是拷贝实现的方式
class DemoApplicationTests { public static void main(String[] args) { // 整型初始化
int[] integerInitialization = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // 删除第五个元素,就是6
integerInitialization = deletedElements(integerInitialization, 5, 5, integerInitialization.length); // 删除后的结果
System.out.println("数组中得到的拷贝元素:" + Arrays.toString(integerInitialization)); } /**
* 数组删除元素的本质,是数组自身的拷贝
* <p>
* 算法:
* 数组从startCopyLocation个位置开始拷贝,startCopyLocation后的元素被拷贝了,然后向前移动了一位重新放回数组
*
* @param objects 需要修改的数组
* @param startCopyLocation 拷贝元素的起始位置
* @param deletedLocation 存放元素的起始位置
* @param length 拷贝几个元素
* @return 删除后的数组
*/
private static int[] deletedElements(int[] objects, int startCopyLocation, int deletedLocation, int length) { int[] newList = objects; System.arraycopy(newList, startCopyLocation + 1, newList, deletedLocation, length - deletedLocation - 1); newList[length - 1] = 0; return newList; } }
三、数组扩容
- 算法:先定义一个更大的数组,然后将原来数组的内容原封不动的拷贝到新数组中
class DemoApplicationTests { public static void main(String[] args) { // 整型初始化
int[] integerInitialization = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // 在2的位置添加一个元素10
integerInitialization = addElement(integerInitialization, 2, 10); // 删除后的结果
System.out.println("数组中添加元素:" + Arrays.toString(integerInitialization)); } /**
* 插入元素
*
* @param ints 需要插入元素的数组
* @param elementLocation 插入元素的位置
* @param value 插入的值
* @return 新的数组
*/
private static int[] addElement(int[] ints, int elementLocation, int value) { // 数组扩容
int[] newElements = new int[ints.length << 1]; // 拷贝elementLocation个元素
System.arraycopy(ints, 0, newElements, 0, elementLocation + 1); // 添加要插入的元素
newElements[elementLocation + 1] = value; // 在插入的元素后,把数组原来后边的元素拷贝进来
System.arraycopy(ints, elementLocation + 1, newElements, elementLocation + 2, ints.length - elementLocation - 1); return newElements;
} }
JDK源码阅读-------自学笔记(五)(浅析数组)的更多相关文章
- JDK源码阅读-------自学笔记(一)(java.lang.Object重写toString源码)
一.前景提要 Object类中定义有public String toString()方法,其返回值是 String 类型. 二.默认返回组成 类名+@+16进制的hashcode,当使用打印方法打印的 ...
- JDK源码阅读-------自学笔记(二十五)(java.util.Vector 自定义讲解)
Vector 向量 Vector简述 1).Vector底层是用数组实现的List 2).虽然线程安全,但是效率低,所以并不是安全就是好的 3).底层大量方法添加synchronized同步标记,sy ...
- JDK源码阅读-------自学笔记(二十四)(java.util.LinkedList 再探 自定义讲解)
一.实现get方法 1.一般思维实现思路 1).将对象的值放入一个中间变量中. 2).遍历索引值,将中间量的下一个元素赋值给中间量. 3).返回中间量中的元素值. 4).示意图 get(2),传入角标 ...
- JDK源码阅读(三):ArraryList源码解析
今天来看一下ArrayList的源码 目录 介绍 继承结构 属性 构造方法 add方法 remove方法 修改方法 获取元素 size()方法 isEmpty方法 clear方法 循环数组 1.介绍 ...
- JDK源码阅读(一):Object源码分析
最近经过某大佬的建议准备阅读一下JDK的源码来提升一下自己 所以开始写JDK源码分析的文章 阅读JDK版本为1.8 目录 Object结构图 构造器 equals 方法 getClass 方法 has ...
- 利用IDEA搭建JDK源码阅读环境
利用IDEA搭建JDK源码阅读环境 首先新建一个java基础项目 基础目录 source 源码 test 测试源码和入口 准备JDK源码 下图框起来的路径就是jdk的储存位置 打开jdk目录,找到sr ...
- JDK源码阅读-FileOutputStream
本文转载自JDK源码阅读-FileOutputStream 导语 FileOutputStream用户打开文件并获取输出流. 打开文件 public FileOutputStream(File fil ...
- JDK源码阅读-FileInputStream
本文转载自JDK源码阅读-FileInputStream 导语 FileIntputStream用于打开一个文件并获取输入流. 打开文件 我们来看看FileIntputStream打开文件时,做了什么 ...
- JDK源码阅读-ByteBuffer
本文转载自JDK源码阅读-ByteBuffer 导语 Buffer是Java NIO中对于缓冲区的封装.在Java BIO中,所有的读写API,都是直接使用byte数组作为缓冲区的,简单直接.但是在J ...
随机推荐
- python三大神器===》迭代器
迭代器: 1.认识迭代器 迭代器是访问集合元素的一种方式.迭代器是一个可以记住遍历的位置的对象.迭代器对象从集合的第一个元素开始访问,直到所有的元素被访问完结束.迭代器只能往前不会后退. 我们怎样才能 ...
- wx.previewimage预览返回会触发onshow的处理方法
最近做详情页,添加图片预览后竟然触发onshow的处理方法.就显得很尴尬.框架用的uni-app 解决方法 1.page外全局定义开关变量 var a; export default { } 2 .o ...
- zabbix监控memcached服务
zabbix监控memcached服务 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.安装并配置memcached服务 1>.使用yum方式安装memcached [ro ...
- L1-046. 整除光棍(模拟除法)
题意: 这里所谓的“光棍”,并不是指单身汪啦~ 说的是全部由1组成的数字,比如1.11.111.1111等.传说任何一个光棍都能被一个不以5结尾的奇数整除.比如,111111就可以被13整除. 现在, ...
- vs2010编译C++ 状态标志
// CTest.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #include <iostream> #include &l ...
- GNS3 模拟icmp记录路由
路由配置: icmp记录路由抓取出接口的IP地址,最多可以抓取9个.ip协议头中的options为40个字节 R1 : conf t int f0/0 no shutdown ip add 192.1 ...
- CentOS 7 搭建本地YUM仓库,并定期同步阿里云源
目录导航: 1. 系统环境 2. 修改yum 源为阿里云源 3. 安装yum相关的软件 4. 根据源标识同步源到本地目录 5. 安装nginx开启目录权限保证本地机器可以直接本地yum源 6. 客户端 ...
- mysql批量插入更新操作
//添加关联赠品(确定) public function addGiveGoods($ids,$child,$parent_sku_no){ $license=new LicenseModel(); ...
- 数据库连接需要dll
连接oracle引用: Oracle.ManagedDataAccess.dll和Oracle.ManagedDataAccess.EntityFramework.dll, 连接sqlserver 连 ...
- java正则表达式校验密码必须是包含大小写字母、数字、特殊符号的8位以上组合
一.需求:密码必须是包含大写字母.小写字母.数字.特殊符号(不是字母,数字,下划线,汉字的字符)的8位以上组合 二.方案:利用正则表达式来校验 三.思路:排除法 1.排除大写字母.小写字母.数字.特殊 ...