void 是一个 Java 关键字。
void
在方法声明和定义中使用,用于指定该方法不返回任何类型,该方法返回 void。它不是一种类型,也没有 void 引用/指针,如在 C/C++ 中。
例如
public void method() { //... return; // -- In this case the return is optional //and not necessary to use public but some changes will be there }
参见