博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java ArrayList trimToSize()方法与示例
阅读量:2534 次
发布时间:2019-05-11

本文共 1694 字,大约阅读时间需要 5 分钟。

ArrayList类trimToSize()方法 (ArrayList Class trimToSize() method)

  • trimToSize() method is available in java.util package.

    trimToSize()方法在java.util包中可用。

  • trimToSize() method is used to trims the capacity according to its current size of this Arraylist.

    trimToSize()方法用于根据此Arraylist的当前大小来修剪容量。

  • trimToSize() method is a non-static method so it is accessible with the class object and if we try to access the method with the class name then we will get an error.

    trimToSize()方法是非静态方法,因此可以通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • trimToSize() method does not throw an exception at the time of trimming the size of its Arraylist.

    trimToSize()方法在修剪其Arraylist的大小时不会引发异常。

Syntax:

句法:

public void trimToSize();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is void, it returns nothing.

此方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void trimToSize() method of ArrayList.import java.util.*;public class TrimToSizeOfArrayList {
public static void main(String[] args) {
// Create an ArrayList with initial // capacity of storing elements ArrayList < String > arr_l = new ArrayList < String > (10); // By using add() method is to add // elements in this ArrayList arr_l.add("C"); arr_l.add("C++"); arr_l.add("JAVA"); arr_l.add("DOTNET"); arr_l.add("PHP"); // By using trimToSize() method is to // trim the size of this ArrayList arr_l.trimToSize(); // Display after trimming System.out.println("arr_l.trimToSize() : " + arr_l); }}

Output

输出量

arr_l.trimToSize() : [C, C++, JAVA, DOTNET, PHP]

翻译自:

转载地址:http://bpvzd.baihongyu.com/

你可能感兴趣的文章
生成商户订单号/退款单号
查看>>
使用Android OpenGL ES 2.0绘图之六:响应触摸事件
查看>>
我们过去几年做对了哪些事
查看>>
Java Bigdecimal使用
查看>>
SQL注入之绕过WAF和Filter
查看>>
jquery validate使用方法
查看>>
DataNode 工作机制
查看>>
windows系统下安装MySQL
查看>>
实验二+070+胡阳洋
查看>>
Linux IPC实践(3) --具名FIFO
查看>>
Qt之模拟时钟
查看>>
第一次接触安卓--记于2015.8.21
查看>>
(转)在分层架构下寻找java web漏洞
查看>>
C++ ifstream ofstream
查看>>
跟初学者学习IbatisNet第四篇
查看>>
seL4环境配置
查看>>
Git报错:insufficient permission for adding an object to repository database .git/objects
查看>>
ajax跨域,携带cookie
查看>>
阶段3 2.Spring_01.Spring框架简介_03.spring概述
查看>>
阶段3 2.Spring_02.程序间耦合_1 编写jdbc的工程代码用于分析程序的耦合
查看>>