编程语言
首页 > 编程语言> > java – Vector是一个过时的Collection

java – Vector是一个过时的Collection

作者:互联网

The Inspection reports any uses of java.util.Vector or java.util.hashtable. While still supported, these classes were made obsolete by the JDK 1.2 Collection classes and should probably not be used in new Development….

我有一个Java项目,使用 Everywhere,我使用的是最新的JDK 8.我想知道我是否可以在最新的java上运行该应用程序.

并告诉我是否可以使用其他关键字为ArrayList,如Vector for new java.

解决方法:

首先,虽然Vector大部分已被ArrayList淘汰,但它仍然完全合法使用,您的项目应该运行得很好.

但是,如上所述,不建议使用.这样做的主要原因是它的所有方法都是同步的,这通常是无用的,并且可能会大大减慢您的应用程序.任何未在方法范围之外共享的局部变量都可以安全地替换为ArrayList.在使用ArrayList替换之前,应仔细检查方法参数,返回值和数据成员,以免您无意中更改同步语义并引入难以发现的错误.

标签:java,vector,obsolete,vector
来源: https://codeday.me/bug/20190612/1222674.html