跳转至内容

Java 编程/关键词/void

来自 Wikibooks,开放世界中的开放书籍

void 是一个 Java 关键字。

在方法声明和定义中使用,用于指定该方法不返回任何类型,该方法返回 void。它不是一种类型,也没有 void 引用/指针,如在 C/C++ 中。

例如

Computer code
public void method()
 {
   //...
   return;   // -- In this case the return is optional
//and not necessary to use public but some changes will be there
 }

参见

华夏公益教科书