当前位置:  技术问答>java相关

在java中vector代表什么意思?大大帮忙,一定给分

    来源: 互联网  发布时间:2015-03-20

    本文导语:  不是java没有指针么? | 表示矢量 可以用来代替数组 主要不同是vector的长度可以自动增长 而数组不行 | 类似于集合。可作为动态数组使用。可以存储任何内容,同一个Vector...

不是java没有指针么?

|
表示矢量

可以用来代替数组

主要不同是vector的长度可以自动增长

而数组不行

|
类似于集合。可作为动态数组使用。可以存储任何内容,同一个Vector可以存储Integer,String,以及任何类(包括Vector)。可以实现复杂的数据结构
为了存储一个简单类型,需要转为一个对象,eg:int->Integer

|
vector 向量,存放对象的可变数组

|
java.util 
Class Vector
java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.Vector

All Implemented Interfaces: 
Cloneable, Collection, List, RandomAccess, Serializable 
Direct Known Subclasses: 
Stack 

--------------------------------------------------------------------------------

public class Vector
extends AbstractList
implements List, RandomAccess, Cloneable, Serializable
The Vector class implements a growable array of objects. Like an array, it contains components that can be accessed using an integer index. However, the size of a Vector can grow or shrink as needed to accommodate adding and removing items after the Vector has been created.

Each vector tries to optimize storage management by maintaining a capacity and a capacityIncrement. The capacity is always at least as large as the vector size; it is usually larger because as components are added to the vector, the vector's storage increases in chunks the size of capacityIncrement. An application can increase the capacity of a vector before inserting a large number of components; this reduces the amount of incremental reallocation. 

As of the Java 2 platform v1.2, this class has been retrofitted to implement List, so that it becomes a part of Java's collection framework. Unlike the new collection implementations, Vector is synchronized.

The Iterators returned by Vector's iterator and listIterator methods are fail-fast: if the Vector is structurally modified at any time after the Iterator is created, in any way except through the Iterator's own remove or add methods, the Iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the Iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future. The Enumerations returned by Vector's elements method are not fail-fast. 



Since:
JDK1.0 
See Also:
Collection, List, ArrayList, LinkedList, Serialized Form

|
一数据结构,类似与数组,但其长度可变

|
普通数组长度不可变,而vector长度可变,但它只能存储对象

|
可以说java的应用是安全指针!

|
象hashmap

    
 
 

您可能感兴趣的文章:

  • 请问Java TM Programming Language中的TM(在Java的右角上)是什么意思啊?
  • web程序出错后,错误提示后面跟着的数字(25)是什么意思?(ConnectionPool.java:25)
  • Java中的cast是什么意思呀
  • java.sql.SQLException: 类型长度大于最大值 是什么意思?在线给分
  • java(TM)此TM是什么意思
  • java的一元操作符怎么用???是什么意思???谢谢谢谢!!!!!!!!
  • 一个关于java中的一句话的意思???
  • 不好意思,初学Java,关于JDK配置的问题
  • 请问:java中的内置类是何意思?
  • 问题简单得有点不好意思,请问java中要写5的6次方,怎么写???
  • 哈哈,JAVA真是有意思
  • 在java语言中">>>"是什么意思?
  • Error: java.lang.ArrayIndexOutOfBoundsException,什么意思?如何解决?
  • 请问师兄java2 考试认证学习指南第112表中间的N/A是什么意思呀?
  • 请问jspSmartUpload报错为“java.lang.IllegalStateException ”是什么意思?
  • java 基本类型或可序列化类型,这里说的可序列化类型是什么意思???具体都有哪些类型??谢谢
  • me是Java初学者,这个错误提示是什么意思?
  • 请问java web start和jre分别是什么意思啊?!(请路过的前辈赐教!!!)
  • 请问下面这个java语句段代表什么意思
  • Serializable?使用和意思?在thinking in java里面看了半天一天也没有明白什么意思!谢谢高手大虾了
  • java新手的问题,java高手帮忙...
  • 没人帮忙吗?我想用JAVA编一个像WINDOW中的画图软件,现在出现了如下问题,请各位老哥老姐帮帮忙
  • 请教一些JAVA的基本问题,初学JAVA有些迷糊,帮帮忙!总迷糊实在受不了了!
  • 新手想学JAVA,帮忙!
  • 请帮忙推荐几个下载java电子书的网站,35分献上!
  • 帮忙给几JAVA技术网站最好都是中文的!!!!!
  • 请帮忙介绍一本java入门的书, 给分啦!
  • 怎样用java作一个屏幕保护程序?请帮忙
  • 用JAVA编一个程序,测试网络速度~~高手帮忙
  • java.mail的小问题,请帮忙。谢谢
  • JAVA高手们...帮忙...急!
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java 类修饰符(private,public和protected)所代表的权限
  • 谁给具体讲讲java:comp/env/ejb/CreditCheck的各个部分都代表什么?
  • 命令行 “java client servername” args[0] 代表 servername 吗?
  • 在Java中,用Mircosoft SQL Server数据库,请问要进行日期字段的读取,用( ResultSet rs ; rs.getDate(1),其中1代表相应的字段为 DateTi
  • java命名空间java.sql类types的类成员方法: java_object定义及介绍
  • 我想学JAVA ,是买THINK IN JAVA 还是JAVA2核心技术:卷1 好???
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: imageflavor定义及介绍
  • 请问Java高手,Java的优势在那里??,Java主要适合于开发哪类应用程序
  • java命名空间java.lang.management类managementfactory的类成员方法: getcompilationmxbean定义及介绍
  • 如何将java.util.Date转化为java.sql.Date?数据库中Date类型对应于java的哪个Date呢
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getlibrarypath定义及介绍
  • 谁有电子版的《Java编程思想第二版(Thinking in java second)》和《Java2编程详解(special edition java2)》?得到给分
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getstarttime定义及介绍
  • 本人想学java,请问java程序员的待遇如何,和java主要有几个比较强的方向
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: stringflavor定义及介绍
  • 我对JAVA一窍不通,可惜别人却给我一个Java的project,要我做一个安装程序,请问哪里有JAVA INSTALLER下载,而且我要不要安装java的sdk才能完成此项任务?
  • java命名空间java.security类keystore的类成员方法: getdefaulttype定义及介绍
  • 新年第一天,让我们讨论一下未来一年JAVA的发展趋势! 个人认为,JAVA将主要朝ERP和JAVA手机方面发展!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getclasspath定义及介绍
  • 我想学Java,但不知道Java的实用的开发工具有那些,Java主要用在哪些方面,EJB到底是什么东西??
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javaserializedobjectmimetype定义及介绍
  • redhat7.3下,java程序打印中文直接用java命令执行正常,用crontab执行java命令为乱码
  • java命名空间java.awt.datatransfer类dataflavor的类成员方法: javafilelistflavor定义及介绍
  • 各位学java的朋友,学java的未来是什么,你们学java都用来开发什么项目啊!来者给分!!
  • java命名空间java.lang.management接口runtimemxbean的类成员方法: getvmname定义及介绍
  • 请问java程序中的import为什么有的用java.….*,而有的又用java.….…,有什么区别吗?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3