#鸿蒙学习大百科#如何对ArrayList进行遍历?

如何对ArrayList进行遍历?

HarmonyOS
2024-10-24 11:09:14
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
小猫的老公
import { ArrayList } from '@kit.ArkTS'
@Entry
@Component
struct Index {
  build() {
    Column() {
      Button("遍历ArrayList").onClick(() => {
        let arr = new ArrayList<string>()
        //add添加元素
        arr.add("1")
        arr.add("3")
        arr.add("2")
        //遍历ArrayList
        arr.forEach((e:string,index:number)=> {
          console.log("第"+index+"元素:"+e)
        });

      })
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-24 18:00:24
相关问题