Arrays


Why arrays are special

  • There are three issues that distinguish arrays from other types of containers: efficiency, type, and the ability to hold primitives.
  • The cost of this speed is that the size of an array object is fixed and cannot be changed for the lifetime of that array.
  • You should generally prefer an ArrayList to an array.
  • You’ll get a RuntimeException if you exceed the bounds, indicating a programmer error.
  • Arrays are superior to pre-generic containers because you create an array to hold a specific type.

Arrays are first-class objects

  • The array identifier is actually a reference to a true object that’s created on the heap. This is the object that holds the references to the other objects.
  • length member that tells you how many elements can be stored in that array object.

Returning an array

  • Returning an array is just like returning any other object—it’s a reference.
  • The garbage collector takes care of cleaning up the array when you’re done with it, and the array will persist for as long as you need it.

Multidimensional arrays

  • Each vector in the arrays that make up the matrix can be of any length.
  • The Arrays.deepToString( ) method works with both primitive arrays and object arrays.

Arrays and generics

  • You cannot instantiate arrays of parameterized types.
  • Erasure removes the parameter type information, and arrays must know the exact type that they hold, in order to enforce type safety.
  • You can parameterize the type of the array itself.
  • The compiler won’t let you instantiate an array of a generic type. However, it will let you create a reference to such an array.
  • Although you cannot create an actual array object that holds generics, you can create an array of the non-generified type and cast it.
  • A generic container will virtually always be a better choice than an array of generics.

Creating test data

Arrays.fill()

  • Since you can only call Arrays.fill( ) with a single data value, the results are not especially useful.

Data Generators

  • If a tool uses a Generator, you can produce any kind of data via your choice of Generator.

Array Utilities

  • There are six basic methods in Arrays: equals(), fill(), binarySearch(), sort(), toString(), hashCode().

Copying an array

  • The Java standard library provides a static method, System.arraycopy( ), which can copy arrays.
  • If you copy arrays of objects, then only the references get copied—there’s no duplication of the objects themselves.

Comparing arrays

  • To be equal, the arrays must have the same number of elements, and each element must be equivalent to each corresponding element in the other array, using the equals( ) for each element.

Array element comparisons

  • You hand a Strategy object to the code that’s always the same, which uses the Strategy to fulfill its algorithm.
  • sort( ) casts its argument to Comparable.

Sorting an array

  • The sorting algorithm that’s used in the Java standard library is designed to be optimal for the particular type you’re sorting—a Quicksort for primitives, and a stable merge sort for objects.

Searching a sorted array

  • If you try to use binarySearchC ) on an unsorted array the results will be unpredictable.
  • Otherwise, it produces a negative value representing the place that the element should be inserted if you are maintaining the sorted array by hand.
  • If an array contains duplicate elements, there is no guarantee which of those duplicates will be found.

Thinking in Java——笔记(16)的更多相关文章

  1. Java笔记16:多线程共享数据

    一.Thread实现 public class ThreadDemo4 { publicstaticvoid main(String[] args) { new ThreadTest4().start ...

  2. java笔记整理

    Java 笔记整理 包含内容     Unix Java 基础, 数据库(Oracle jdbc Hibernate pl/sql), web, JSP, Struts, Ajax Spring, E ...

  3. Effective Java笔记一 创建和销毁对象

    Effective Java笔记一 创建和销毁对象 第1条 考虑用静态工厂方法代替构造器 第2条 遇到多个构造器参数时要考虑用构建器 第3条 用私有构造器或者枚举类型强化Singleton属性 第4条 ...

  4. Java笔记3-for,switch循环,格式化输出,随机数

    大纲:一.分支结构 if switch二.循环 for while do while break continue三.格式化输出 [printf] int score = 100; String na ...

  5. java笔记00-目录

    --2013年7月26日17:49:59 学习java已久,趁最近有空,写一个总结: java笔记01-反射:

  6. Ext.Net学习笔记16:Ext.Net GridPanel 折叠/展开行

    Ext.Net学习笔记16:Ext.Net GridPanel 折叠/展开行 Ext.Net GridPanel的行支持折叠/展开功能,这个功能个人觉得还说很有用处的,尤其是数据中包含图片等内容的时候 ...

  7. SQL反模式学习笔记16 使用随机数排序

    目标:随机排序,使用高效的SQL语句查询获取随机数据样本. 反模式:使用RAND()随机函数 SELECT * FROM Employees AS e ORDER BY RAND() Limit 1 ...

  8. golang学习笔记16 beego orm 数据库操作

    golang学习笔记16 beego orm 数据库操作 beego ORM 是一个强大的 Go 语言 ORM 框架.她的灵感主要来自 Django ORM 和 SQLAlchemy. 目前该框架仍处 ...

  9. 转 Java笔记:Java内存模型

    Java笔记:Java内存模型 2014.04.09 | Comments 1. 基本概念 <深入理解Java内存模型>详细讲解了java的内存模型,这里对其中的一些基本概念做个简单的笔记 ...

随机推荐

  1. 基于python的文件处理

    二.文件操作方法大全 1.os.mknod("test.txt") 创建空文件2.fp = open("test.txt",w) 直接打开一个文件,如果文件不存 ...

  2. CTR预估评价指标介绍

    1 离线指标 1.1 LogLoss 1.1.1 KL散度 logloss使用KL散度来计算.设样本的真实分布为P,预测分布为Q,则KL散度定义如下: 这里可以通俗地把KL散度理解为相同事件空间里两个 ...

  3. 为什么get比post更快

    引言 get和post在面试过程中一般都会问到,一般的区别: 1.post更安全(不会作为url的一部分,不会被缓存.保存在服务器日志.以及浏览器浏览记录中) 2.post发送的数据量更大(get有u ...

  4. 漫画告诉你什么是DDoS攻击?

    本文作者:魏杰 文章转载自:绿盟科技博客,原文标题:看ADS如何治愈DDoS伤痛 根据<2015 H1绿盟科技DDoS威胁报告>指出,如今大流量网络攻击正逐渐呈现增长趋势,前不久锤子科技的 ...

  5. python 单步调试初探(未完待续)

    pdb 调试: import pdb pdb.set_trace()     pudb 调试: http://python.jobbole.com/82638/

  6. 在VS中建立.aspx,.cs,.designer.cs之间的级联关系

    <Compile Include="..\Admin\Actions.aspx.cs"> <DependentUpon>Actions.aspx</D ...

  7. 设置UITableView的separatorInset值为UIEdgeInsetsZero,分隔线不最左端显示的问题

    一.问题描述 UITableView分割线要显示到最左端 查看UITableView的属性,发现设置separatorInset的值可以自定义分割线的位置. @property (nonatomic) ...

  8. VC++ 应用程序无法正常启动0xc0150002

    使用VC++开发软件,编译后的程序打不开,弹出错误框:   使用Dpends Walker查看依赖项,没有什么异常. 然后,右键"计算机",选择"管理",打开计 ...

  9. kali2.0中dradis的使用方法

    启动脚本位于:/usr/lib/dradis下,再该目录下有一个start.sh文件,执行后,可以在浏览器中输入https://localhost:3004即可打开dradis的web接口 切记前面h ...

  10. iOS根据16进制的色号来设置颜色,适合封装工具类

    iOS中有时候UI给的一个色号就像 #54e1b7 这个,而我们一般设置颜色都是根据RBG来设置的,所以这里需要把这个16进制的色号转为RGB值,这里我们就使用一下的方法来调用设置颜色. + (UIC ...