JAVA学习过程中的一些小知识点

93 阅读1分钟

1.void不需要返回值

可以写 public static void method2(){ return; } 表示结束。

但是不能写public static void method2(){return 10;}