用 2 个参数和没有返回类型来说明方法的Java程序
没有返回类型的函数代表 void函数。 void函数可以接受多个或零个参数并且不返回任何内容。在这里,我们将定义一个接受 2 个参数并且不返回任何内容的方法。
句法:
public static void function(int a, int b)
例子:
public static voif fun1(String 1, String 2){
// method execution code
};
方法:
- 将 2 个输入放入两个变量中。
- 将这些输入作为参数传递给函数。
- 显示来自这个定义函数的总和。
代码:
Java
// Java Program to Illustrate a Method
// with 2 Parameters and without Return Type
import java.util.*;
public class Main {
public static void main(String args[])
{
int a = 4;
int b = 5;
// Calling the function with 2 parameters
calc(a, b);
}
public static void calc(int x, int y)
{
int sum = x + y;
// Displaying the sum
System.out.print("Sum of two numbers is :" + sum);
}
}
输出
Sum of two numbers is :9