您的位置:首页 > 产品设计 > UI/UE

APK反编译jd-gui代码分析(草稿记录)

2014-08-04 15:54 567 查看
1. 连续for循环

反编译代码:

private void removeHideLines() {
for (int i = 0; i < lines.size(); i++) {
if (((MusicTrackLine) this.lines.get(i)).getX() + ((MusicTrackLine) this.lines.get(i)).getLength() <= 0) {
this.lines.remove(i);
}
}
for (int j = 0; j < recordLines.size(); j++) {
if (((MusicTrackLine) this.recordLines.get(j)).getX()
+ ((MusicTrackLine) this.recordLines.get(j)).getLength() <= 0) {
this.recordLines.remove(j);
}
}
}


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: