Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we pass parameters by value in a Java method?
Passing Parameters by Value means calling a method with a parameter. Through this, the argument value is passed to the parameter.
Example
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);
}
}
Output
Sum of the given numbers is ::75
Advertisements