continue
continue 标签语句导致重构复杂化,可能令人困惑。
示例:
void handle(List<String> strs) { outer: for (String s: strs) { for (char ch : s.toCharArray()) { if ('s' == ch) continue outer; handleChar(ch); } } }