Answers for "how to pass void method as parameter in java"

1

how to call a void method with parameters in java

public class methods{
  public static void main(String[] args){
    printSum(5, 15); // Print 20
  }
  public static void printSum(int a, int b){
    System.out.println(a + b);
  }
  // Our method should be outside the main methods bounds
  // Call your function inside the main method.
}
Posted by: Guest on June-18-2021

Code answers related to "how to pass void method as parameter in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language