如何往已经建好的数组里面添加数据?

呼吸 2019-7-15 1502

如何往已经建好的数组里面添加数据? 


最新回复 (4)
  • 薇~ 2019-7-15
    2
    数组[index ] [ 数据] -变量与数据类型(上):https://forum.uibot.com.cn/thread-404.htm变量与数据类型(下):https://forum.uibot.com.cn/thread-405.htm
  • 错一条扣50 2019-7-18
    3
    arr1 = [1,2,3,4,5]
    arr2 = [0]
    想要实现输出[0,1,2,3,4,5]
  • 153****0517 10月前
    4
    arr1 = [1,2,3,4,5]
    arr2 = [0]
    arrRet = concat(arr2,arr1)
    TracePrint(arr1)
    TracePrint(arr2)
    TracePrint(arrRet)
  • 153****0517 10月前
    5
    arr2 = [0]
    push(arr2,66)
    TracePrint(arr2)
返回
发新帖