Method Syntax in Java
In Java, a method is a block of code that performs a specific task. It is used to group related code together and can be called (invoked) from other parts of the program. A method can take input parameters (arguments) and return a value.
Here's an example of a method in Java:
javapublic class Example {
public static void main(String[] args) {
int result = add(5, 3);
System.out.println("The sum is: " + result);
}
public static int add(int a, int b) {
int sum = a + b;
return sum;
}
}
In this example, we define a method called "add" that takes two integer arguments and returns their sum. The "main" method calls the "add" method with arguments 5 and 3 and stores the result in a variable called "result". Finally, it prints the result using the "println" method.
When the program is run, the output will be:
pythonThe sum is: 8
This is because the "add" method is called with arguments 5 and 3, which results in a sum of 8.
Comments
Post a Comment