您好,登錄后才能下訂單哦!
關于 Kotlin 開發
使用 Kotlin 開發 Android App 在 Java 工程師群體中變得越來越流行。如果你由于某些原因錯過了 Kotlin,我們強烈建議你看一下這篇文章。
對于那些處在技術前沿和喜歡 Kotlin 的開發者來說,本篇文章和他們息息相關。所以,下面就讓我們來看一下怎樣在 Kotlin 中使用集合吧。
Kotlin中的集合是基于 Java 集合的框架。本篇文章主要講的是 kotlin.collections 包中的幾個特性。
數據處理
Kotlin 中有一個拓展函數的特性,這個特性可以使 Kotlin 標準庫(stdlib)支持 JDK 的中的類的方法。舉個例子:如果你打開Kotlin 標準庫中的 open_Collection.kt 文件,你可以找到很類似于下面這樣的方法:
/** * Returns a list containing only elements matching the given [predicate]. */ public inline fun <T> Iterable<T>.filter(predicate: (T) -> Boolean): List<T> { return filterTo(ArrayList<T>(), predicate) }
所以,你寫的代碼可能是下面這個樣子:
val originalList = listOf(1, 2, 3, 4, 5, 6) assertEquals(listOf(2, 4, 6), originalList.filter { it % 2 == 0 }) val originalList = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val result = originalList.firstOrNull { it > 4 } assertEquals(result, 5) val originalList = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val result = originalList.getOrElse(12) { 12 } assertEquals(result, 12) val originalList = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val result = originalList.dropWhile { it < 5 } assertEquals(result, listOf(5, 6, 7, 8, 9, 10)) val originalList = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) val result = originalList .dropWhile { it < 5 } .find { it < 7 } assertEquals(result, 5)
你需要注意的是:filter和dropWhile 就像其他操作符一樣,返回的是一個新的事例。這意味著 originalList 不會改變。
為了更好的理解代碼底層到底發生了什么,我們打開源碼看一下 listOf() 方法:
/** Returns a new read-only list of given elements. The returned list is serializable (JVM). */ public fun <T> listOf(vararg elements: T): List<T> = if (elements.size > 0) elements.asList() else emptyList()
由于RxJava和 Java 8 的 Stream API 包含類似的方法,所以上面的代碼和 RxJava 以及 Stream API很像。 但是由于 Android 工程師不能使用 Stream API,所以他們更多的使用的 RxJava 處理數據的方法來解決這個問題。然后,這種操作并不完全正確,原因在于:RxJava 是一個事件處理庫,而不是數據處理。所以你現在可以使用 Kotlin 來解決這個問題而不必擔心這些問題。
不可變集合
如果你對不可變對象(immutable object)感覺到很陌生的話,我們建議你先看完這個文檔 看完后,在看一下這個。
Kotlin區分可變對象(mutable object)和不可變對象(lists, sets, maps等等)的方法和其他編程語言不一樣。在使用Kotlin集合時準確區分這幾種兩種對象對于避免不必要的錯誤和 bug 都非常有用。
Kotlin允許像 Java 類似的寫法創建 Kotlin 的集合實例。
val list = ArrayList<String>()
這是最簡單和整潔的方法. 下面這種方法是最棒的寫法:
val list: kotlin.collections.List<String> = java.util.ArrayList()
我創建了一個kotlin.collections.List引用,同時我們也創建了一個不可變的集合。如果你不是很相信的話,那么我們可以看一下源碼:
public interface List<out E> : Collection<E> { // Query Operations override val size: Int override fun isEmpty(): Boolean override fun contains(element: @UnsafeVariance E): Boolean override fun iterator(): Iterator<E> // Bulk Operations override fun containsAll(elements: Collection<@UnsafeVariance E>): Boolean // Positional Access Operations /** * Returns the element at the specified index in the list. */ public operator fun get(index: Int): E // Search Operations /** * Returns the index of the first occurrence of the specified element in the list, or -1 if the specified * element is not contained in the list. */ public fun indexOf(element: @UnsafeVariance E): Int /** * Returns the index of the last occurrence of the specified element in the list, or -1 if the specified * element is not contained in the list. */ public fun lastIndexOf(element: @UnsafeVariance E): Int // List Iterators /** * Returns a list iterator over the elements in this list (in proper sequence). */ public fun listIterator(): ListIterator<E> /** * Returns a list iterator over the elements in this list (in proper sequence), starting at the specified [index]. */ public fun listIterator(index: Int): ListIterator<E> // View /** * Returns a view of the portion of this list between the specified [fromIndex] (inclusive) and [toIndex] (exclusive). * The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. */ public fun subList(fromIndex: Int, toIndex: Int): List<E> }
你看到源碼中沒 add() 方法,也沒有 remove() 方法,同時也沒有其他的一些方法去改變這個集合。在這個例子中,實例本身是java.util.ArrayList。 下面我們來通過一個例子來解釋為什么:
val list: kotlin.collections.MutableList<String> = java.util.ArrayList() list.add("string")
你最好在本地的源碼中看這例子:
public interface MutableList<E> : List<E>, MutableCollection<E> { // Modification Operations override fun add(element: E): Boolean override fun remove(element: E): Boolean // Bulk Modification Operations override fun addAll(elements: Collection<E>): Boolean /** * Inserts all of the elements in the specified collection [elements] into this list at the specified [index]. * * @return `true` if the list was changed as the result of the operation. */ public fun addAll(index: Int, elements: Collection<E>): Boolean override fun removeAll(elements: Collection<E>): Boolean override fun retainAll(elements: Collection<E>): Boolean override fun clear(): Unit // Positional Access Operations /** * Replaces the element at the specified position in this list with the specified element. * * @return the element previously at the specified position. */ public operator fun set(index: Int, element: E): E /** * Inserts an element into the list at the specified [index]. */ public fun add(index: Int, element: E): Unit /** * Removes an element at the specified [index] from the list. * * @return the element that has been removed. */ public fun removeAt(index: Int): E // List Iterators override fun listIterator(): MutableListIterator<E> override fun listIterator(index: Int): MutableListIterator<E> // View override fun subList(fromIndex: Int, toIndex: Int): MutableList<E> }
怎樣理解:Java 的 ArrayList 是否和 Kotlin 的 List一樣?
val list: kotlin.collections.List<String> = java.util.ArrayList()
實際上,這里并沒有什么奇怪的地方. Kotlin 的集合繼承了 Java 的 List 的接口。我們可以從 kotlin.collections.Collection.kt 文件中看到:
@file:kotlin.jvm.JvmMultifileClass @file:kotlin.jvm.JvmName("CollectionsKt") package kotlin.collections import kotlin.comparisons.compareValues
正如之前所提的,這個文件包含了所有的集合擴展方法。我們可以看到,我們在 Kotlin 中幾乎可以使用 Java CollectionsKT 類中的所有方法.當然,也需要導入 java.util.* 。
讓我們來看一下我們在 Java 代碼中怎么調用 Kotlin 集合:
java.util.List<Integer> list = kotlin.collections.CollectionsKt.listOf(3, 4, 5); java.util.List<Integer> filteredList = CollectionsKt.filter(list, item -> item > 4);
你現在可以很清楚的看到 Kotlin 集合是如何使用 Java 的 List 。所有擴展函數都可以作為靜態方法訪問。
總結
Android 開發語言 Kotlin 是一門非常有趣的語言。它能幫助我們編寫更加簡潔和安全的代碼。初次之外,Kotlin 與 Java 兼容。
好了,以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。