Java Void Keyword - W3Schools
Maybe your like
Java void Keyword
❮ Java Keywords
Example
A method without any return values:
public class Main { static void myMethod() { System.out.println("I just got executed!"); } public static void main(String[] args) { myMethod(); } }Try it Yourself »
Definition and Usage
The void keyword specifies that a method should not have a return value.
More Examples
Tip: If you want a method to return a value, you can use a primitive data type (such as int, char, etc.) instead of void, and use the return keyword inside the method:
Example
public class Main { static int myMethod(int x) { return 5 + x; } public static void main(String[] args) { System.out.println(myMethod(3)); } } // Outputs 8 (5 + 3)Try it Yourself »
Related Pages
Read more about methods in our Java Methods Tutorial.
❮ Java Keywords
★ +1 Sign in to track progressTag » What Does Void Mean In Java
-
What Is The Meaning Of Void In Java? - Quora
-
What Does Void Mean In Java? - Examples Java Code Geeks - 2022
-
What Does 'public Static Void' Mean In Java? - Stack Overflow
-
Java Programming/Keywords/void - Wikibooks, Open Books For An ...
-
Void Keyword Definition In Java - ThoughtCo
-
Void Type In Java | Baeldung
-
What Does Void Mean In Java - Linux Hint
-
Java Main() Method - Public Static Void Main(String[] Args)
-
What Does 'public Static Void' Mean In Java? - Intellipaat Community
-
The Void Keyword In Java Programming Language - Codeforcoding
-
What Is 'Public Static Void Main' In Java? - Video & Lesson Transcript
-
What Does 'public Static Void' Mean In Java? - HKR Trainings
-
The Void Return Type In Java - YouTube
-
Public Static Void Main(String[] Args) - Java Main Method | DigitalOcean