1.2 and Reserved Words 绪Keyword 论 break Exits from the block of code in which it resides. continue Stops the rest of the code following this statement from executing in a loop and then begins the next iteration of the loop. instanceof Determines whether an object is an instance of a class, superclass, or interface. (是否是某个类/超类/接口类的实例?) return Returns from a method without executing any code that followsthe statement (can optionally return a variable).
Java Programming, spring, 2012