一、定义
块:从{ 开始 到对应的} 结束,即一个块
public class HelloWorld { //类对应的块 public static void main(String[] args) { //主方法对应的块 System.out.println("abc"); } } |
本文共 193 字,大约阅读时间需要 1 分钟。
一、定义
块:从{ 开始 到对应的} 结束,即一个块
public class HelloWorld { //类对应的块 public static void main(String[] args) { //主方法对应的块 System.out.println("abc"); } } |
转载于:https://www.cnblogs.com/xlfcjx/p/10768377.html