java 里,这两种写法哪种好?
for(String id: idSet){ String key = "FLAG_" + id; ..... } String key; for(String id: idSet){ key = "FLAG_" + id; ..... }