Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
是这样的,我做一个卡牌游戏,是通过XML文件写入数组,然后通过数组循环遍历按名字创建卡牌,我现在想实现一个功能,就是通过数组存进去的数量这个值,来筛选,数量是0的就不创建,应该怎么操作,事件怎么写?
通过数组遍历循环创建卡牌的过程中,加多一个条件判定,例如你的数量存放在y=6好了,那就是遍历循环过程中,当 数组.at(当前循环下标,6)>0 时,才创建卡牌,这样数量为0的就自然被跳过然后不创建了
正解。。。。。。。。。