美文网首页
15、集合 multiply

15、集合 multiply

作者: 许你一枝花 | 来源:发表于2023-05-06 11:13 被阅读0次
    class GroovyTest {
    
        static void main(args) {
    
            def list = [1,2,3]
            def newList = list.multiply(2)
            println(newList)
    
    
            def list1 = [1,2,3]
            def newList1 = list*3
            println(newList1)
    
        }
    }
    

    输出:

    [1, 2, 3, 1, 2, 3]
    [1, 2, 3, 1, 2, 3, 1, 2, 3]
    
    
    image.png

    相关文章

      网友评论

          本文标题:15、集合 multiply

          本文链接:https://www.haomeiwen.com/subject/bzsojdtx.html