关于Loop/switch isn't completed

源码:

  while(iterThat.hasNext())
            	sNameThat = (String)iterThat.next();

反编译后:

 if(!iterThat.hasNext())
                continue; /* Loop/switch isn't completed */
            sNameThat = (String)iterThat.next();


你可能感兴趣的:(关于Loop/switch isn't completed)