本文介绍了Set和List有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

设置< E> 列表< E> 接口之间的根本区别是什么?

What is the fundamental difference between the Set<E> and List<E> interfaces?

推荐答案

列表是一个有序的元素序列,而 Set 是一个不同的元素列表(谢谢,)。

List is an ordered sequence of elements whereas Set is a distinct list of elements which is unordered (thank you, Quinn Taylor).

这篇关于Set和List有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 02:39