Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

void

Example

A method that does not return any values:

public class Main {
  static void myMethod() {
    System.out.println("I just got executed!");
 }
 
  public static void main(String[] args) {
    myMethod();
  }
}

Definition and Usage

The void keyword indicates that a method does not return any value.

More Examples

Hint: If you intend for a method to yield a value, you can utilize a primitive data type (e.g., int, char, etc.) in lieu of void, and incorporate the return keyword within 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)