块
从{ 开始 到对应的} 结束,即一个块
1 public class HelloWorld { //类对应的块 2 public static void main(String[] args) { //主方法对应的块 3 System.out.println("abc"); 4 } 5 }