Java转Kotlin学习(三)

Java转Kotlin学习(三)_第1张图片

1. 介绍

作为Kotlin入门的第三课,打算直接学习至关重要的集合部分。因为一般的应用开发都离不开数据,数据处理就要用到集合,而只有深入了解集合,包括概念及不同类型的集合分别实现了哪些方法,才能在需要的时候快速选出最合适的集合与对应的操作。因此,迫不及待地想给大家展示Kotlin集合的魅力,基础数据类型的用法会放到后续的文章进行整理。

Kotlin中的集合主要有以下几种:

Iterable–An iterator over a collection or another entity that can be represented as a sequence of elements;

MutableIterable–An iterator over a mutable collection. Provides the ability to remove elements while iterating;

Collection–A generic collection of elements. Methods in this interface support only read-only access to the collection;

MutableCollection–A generic collection of elements that supports adding and removing elements;

Lis

你可能感兴趣的:(Java转Kotlin学习(三))