中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何删除ArrayList中的某个元素?
微信扫码分享
import { ArrayList } from '@kit.ArkTS' @Entry @Component struct Index { build() { Column() { Button("删除元素").onClick(() => { let arr = new ArrayList<string>() //add添加元素 arr.add("1") arr.add("hello") arr.add("hello") arr.add("4") arr.add("5") //删除 元素hello remove会删除匹配到的第一个元素,列表中存在2个hello,会删除第一个hello arr.remove("hello") console.log("======"+arr.convertToArray().toString()) }) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }