java 中RandomAccess接口源码分析
程序员文章站
2024-02-17 10:14:46
java 中randomaccess接口源码分析
randomaccess是一个接口,位于java.util包中。
这个接口的作用注释写的很清楚了:
/*...
java 中randomaccess接口源码分析
randomaccess是一个接口,位于java.util包中。
这个接口的作用注释写的很清楚了:
/** * marker interface used by <tt>list</tt> implementations to indicate that * they support fast (generally constant time) random access. the primary * purpose of this interface is to allow generic algorithms to alter their * behavior to provide good performance when applied to either random or * sequential access lists. * list实现所使用的标记接口,用来表明实现了这些接口的list支持快速(通常是常数时间)随机访问。 * 这个接口的主要目的是允许一般的算法更改它们的行为,以便在随机或者顺序存取列表时能提供更好的性能。 * <p>the best algorithms for manipulating random access lists (such as * <tt>arraylist</tt>) can produce quadratic behavior when applied to * sequential access lists (such as <tt>linkedlist</tt>). generic list * algorithms are encouraged to check whether the given list is an * <tt>instanceof</tt> this interface before applying an algorithm that would * provide poor performance if it were applied to a sequential access list, * and to alter their behavior if necessary to guarantee acceptable * performance. * 操作随机访问列表(如arraylist)的最佳算法在应用于顺序存取列表时,有可能产生二次项行为。 * 泛型算法列表鼓励在将某个算法应用于顺序存取列表可能导致差的性能之前,先检查给定的列表是否是这个接口的一个实例, * 并在需要时去改变这些算法的行为以保证性能。 * <p>it is recognized that the distinction between random and sequential * access is often fuzzy. for example, some <tt>list</tt> implementations * provide asymptotically linear access times if they get huge, but constant * access times in practice. such a <tt>list</tt> implementation * should generally implement this interface. as a rule of thumb, a * <tt>list</tt> implementation should implement this interface if, * for typical instances of the class, this loop: * 随机访问和顺序存取之间的界限通常是模糊的。例如,一些list实现在变得很大时会导致渐进的非线性访问时间,但实际上是常量访问时间。 * 这样的list实现通常都应该实现该接口。 * 一般来说,某个list实现如果(对某些典型的类的实例来说)满足下面的条件,就应该实现这个接口:循环 * <pre> * for (int i=0, n=list.size(); i < n; i++) * list.get(i); * </pre> * runs faster than this loop: * 比下面的循环运行速度快。 * <pre> * for (iterator i=list.iterator(); i.hasnext(); ) * i.next(); * </pre> * * <p>this interface is a member of the * <a href="{@docroot}/../technotes/guides/collections/index.html" rel="external nofollow" > * java collections framework</a>. * 这个接口是java集合框架的一员。 * @since 1.4 */ public interface randomaccess { }
randomaccess是一个空接口,而空接口的作用一般是起到一个标识的作用。
通俗点讲,就是判断一个list是否实现了randomacess接口,如果实现了,采用下面所示的简单的for循环进行访问速度比较快:
for (int i=0, n=list.size(); i < n; i++) list.get(i);
如果未实现randomacess接口,则采用下面的iterator循环访问速度比较快。
for (iterator i=list.iterator(); i.hasnext(); ) i.next();
判断使用instanceof,即
if (list instanceof randomaccess)
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
java 中RandomAccess接口源码分析
-
java Iterator接口和LIstIterator接口分析
-
Java中数组转List的三种方法与对比分析
-
Java使用Statement接口执行SQL语句操作实例分析
-
java.util.Collection源码分析与深度理解
-
PipedWriter和PipedReader源码分析_动力节点Java学院整理
-
java并发容器CopyOnWriteArrayList实现原理及源码分析
-
Java接口定义与实现方法分析
-
Java PriorityQueue源码分析
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析