我们如何在 Java 方法中按值传递参数?


按值传递参数是指用一个参数调用方法。通过这种方式,参数值传递给参数。

示例

public class SwappingExample {
   public static void swapFunction(int a, int b) {
      int c = a+b;
      System.out.println("Sum of the given numbers is ::"+c);
   }

   public static void main(String[] args) {
      int a = 30;
      int b = 45;
      swapFunction(a, b);
   }
}

输出

Sum of the given numbers is ::75

更新时间:30-Jul-2019

208 次浏览

开启您的职业生涯

完成课程,获得认证

开始学习
广告