摘要:
SwipeDismissTouchListener.java 1 /* 2 * Copyright 2013 Google Inc. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 ... 阅读全文
摘要:
部分Java代码优化经验1. 谨慎对待Java的循环遍历Java中的列表遍历可比它看起来要麻烦多了。就以下面两段代码为例:A:private final List _bars;for(Bar bar : _bars) { //Do important stuff}B:private final... 阅读全文