当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Kotlin mutableListOf()用法及代码示例


科特林,mutableListOf()方法用于实例化MutableList接口。 MutableList 类用于创建可变列表,可以在其中添加或删除元素。方法mutableListOf()返回 MutableList 接口的实例,并采用特定类型或混合(取决于 MutableList 实例的类型)元素的数组,也可以为 null。

用法:

 fun  <T> mutableListOf( vararg elements: T): MutableList <T>

参数:
它采用特定类型或混合类型或空参数的数组。当需要创建 MutableList 的空实例时,使用空参数。

返回:

它返回MutableList接口的实例。

Kotlin 程序演示mutableListOf() -


fun main(args: Array<String>) 
    { 
        //declaring a mutable list of integers 
        val mutableListA = mutableListOf<Int>( 1 , 2 , 3 , 4 , 3); 
        println(mutableListA) 
  
        //declaring a mutable list of strings 
        val mutableListB = mutableListOf<String>("Geeks","for" , "geeks"); 
        println(mutableListB) 
  
        //declaring an empty mutable list of integers 
        val mutableListC = mutableSetOf<Int>() 
        println("Empty list "+mutableListC ) 
    } 

输出:

[1, 2, 3, 4, 3]
[Geeks, for, geeks]
Empty list []

添加和删除列表中的元素 -

我们可以使用add()函数在可变列表中添加元素,并使用remove()函数删除元素。

Kotlin 程序演示mutableListOf() -


fun main(args: Array<String>) { 
    var mutablelist=mutableListOf("Geeks", "For"); 
    //adding string elements 
    mutablelist.add("Geeks") 
    for(i in mutablelist) 
        println(i) 
    println("... after removing \"For\" ...") 
    //removing "For" 
    mutablelist.remove("For") 
    for(i in mutablelist) 
        println(i) 
} 

输出:

Geeks
For
Geeks
... after removing "For" ...
Geeks
Geeks

设置索引 -

使用索引函数indexOf()、lastIndexOf()我们可以获取指定元素的索引。我们还可以使用elementAt()函数查找某个特定索引处的元素。

使用索引的 Kotlin 程序 -


fun main(args: Array<String>) 
{ 
    val captains = mutableListOf("Kohli","Smith","Root","Rohit","Dhawan") 
  
    println("The element at index 2 is: "+captains.elementAt(2)) 
  
    println("The index of element is: "+captains.indexOf("Smith")) 
  
    println("The last index of element is: "+captains.lastIndexOf("Rohit")) 
} 

输出:

The element at index 2 is: Root
The index of element is: 1
The last index of element is: 3

列出第一个和最后一个元素 -

我们可以使用 first() 和 last() 函数获取列表的第一个和元素。


fun main(args: Array<String>){ 
    val captains = mutableListOf(1,2,3,4,"Kohli","Smith", 
        "Root","Malinga","Dhawan","Rohit") 
  
    println("The first element of the list is: "+captains.first()) 
  
    println("The last element of the list is: "+captains.last()) 
} 

输出:

The first element of the list is: 1
The last element of the list is: Rohit

遍历 mutableList -

我们可以使用迭代器运行 for 循环,遍历列表中的所有项目。


fun main(args: Array<String>) 
{ 
    //declaring a mutable list of integers 
    val seta = mutableListOf( 1 , 2 , 3 , 4 ); 
  
    //traversal of seta using an iterator 'item' 
    for(item in seta) 
        println( item ) 
} 

输出:

1
2
3
4

contains() 和 containsAll() 函数 -

这两种方法都用于检查列表中是否存在元素?

使用contains()和containsAll()函数的Kotlin程序 -


fun main(args: Array<String>){ 
    val captains = mutableListOf(1,2,3,4,"Kohli","Smith", 
        "Root","Malinga","Rohit","Dhawan") 
  
  
    var name = "Dhawan"
    println("The list contains the element $name or not?" + 
            "   "+captains.contains(name)) 
  
    var num = 5
    println("The list contains the element $num or not?" + 
            "   "+captains.contains(num)) 
  
    println("The list contains the given elements or not?" + 
            "   "+captains.containsAll(setOf(1,3,"Root"))) 
} 

输出:

The list contains the element Dhawan or not?   true
The list contains the element 5 or not?   false
The list contains the given elements or not?   true


相关用法


注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 Kotlin mutableListOf()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。