Methods in Java


In Java, a method is a block of code that performs a specific task. Methods are used to define behavior in a class. They are defined with a specific name and can take input (parameters) and return output (return type). In this tutorial, we will explore the definition, calling, parameters, and return types of methods in Java.

1. Defining a Method

A method is defined within a class. It consists of:

  • Return Type: Specifies the type of value the method will return (e.g., int, void, String).
  • Method Name: The name of the method, which follows standard naming conventions.
  • Parameters: The inputs passed to the method (optional). They are specified within parentheses.
  • Method Body: The block of code that defines the behavior of the method, enclosed in curly braces.

Syntax for defining a method:

    returnType methodName(parameters) {
        // Method body
    }
        

Example 1: Defining a Simple Method

Here is an example of a method that does not take any parameters and does not return a value. It simply prints a message:

    class MyClass {
        // Method definition
        void greet() {
            System.out.println("Hello, welcome to Java!");
        }
    }
        

2. Calling a Method

Once a method is defined, you can call it (invoke it) to execute its functionality. To call a method, use the method's name followed by parentheses. If the method takes parameters, provide the values in the parentheses.

Example 2: Calling a Method

In this example, we will call the greet method that we defined earlier:

    public class Main {
        public static void main(String[] args) {
            // Create an object of the MyClass class
            MyClass myObject = new MyClass();
    
            // Call the greet method
            myObject.greet();
        }
    }
        

Output:

    Hello, welcome to Java!
        

3. Methods with Parameters

Methods can accept parameters, which allow you to pass values into the method when calling it. Parameters are specified inside the parentheses during method definition. When calling the method, you provide values corresponding to those parameters.

Syntax for defining a method with parameters:

    returnType methodName(parameter1, parameter2, ...) {
        // Method body
    }
        

Example 3: Method with Parameters

Here is an example of a method that takes two integers as parameters and prints their sum:

    class MyClass {
        // Method with parameters
        void addNumbers(int num1, int num2) {
            int sum = num1 + num2;
            System.out.println("Sum: " + sum);
        }
    }
        

Calling the Method with Parameters:

    public class Main {
        public static void main(String[] args) {
            // Create an object of MyClass
            MyClass myObject = new MyClass();
    
            // Call the addNumbers method with parameters
            myObject.addNumbers(5, 3);
        }
    }
        

Output:

    Sum: 8
        

4. Return Type in Methods

Methods in Java can also return a value. The return type specifies what type of value the method will return (e.g., int, String). If a method does not return a value, the return type is void.

Syntax for defining a method with a return type:

    returnType methodName(parameters) {
        // Method body
        return value;
    }
        

Example 4: Method with a Return Type

Here is an example of a method that returns the sum of two numbers:

    class MyClass {
        // Method with return type
        int addNumbers(int num1, int num2) {
            int sum = num1 + num2;
            return sum; // Return the sum
        }
    }
        

Calling the Method and Receiving the Return Value:

    public class Main {
        public static void main(String[] args) {
            // Create an object of MyClass
            MyClass myObject = new MyClass();
    
            // Call the addNumbers method and store the returned value
            int result = myObject.addNumbers(10, 5);
    
            // Print the result
            System.out.println("Sum: " + result);
        }
    }
        

Output:

    Sum: 15
        

5. Method Overloading

In Java, you can define multiple methods with the same name but different parameters. This is called method overloading. The return type can be the same or different, but the method signatures (name and parameters) must differ.

Example 5: Method Overloading

Here is an example of method overloading, where we define two methods with the same name but different parameters:

    class MyClass {
        // Overloaded method with two parameters
        int addNumbers(int num1, int num2) {
            return num1 + num2;
        }
    
        // Overloaded method with three parameters
        int addNumbers(int num1, int num2, int num3) {
            return num1 + num2 + num3;
        }
    }
        

Calling the Overloaded Methods:

    public class Main {
        public static void main(String[] args) {
            // Create an object of MyClass
            MyClass myObject = new MyClass();
    
            // Call the addNumbers method with two parameters
            int result1 = myObject.addNumbers(5, 3);
            System.out.println("Sum (2 numbers): " + result1);
    
            // Call the addNumbers method with three parameters
            int result2 = myObject.addNumbers(5, 3, 2);
            System.out.println("Sum (3 numbers): " + result2);
        }
    }
        

Output:

    Sum (2 numbers): 8
    Sum (3 numbers): 10
        

6. Conclusion

Methods in Java are essential for structuring your code in a modular way. You can define methods to perform specific tasks, pass parameters to methods, and receive return values. Method overloading allows you to define methods with the same name but different parameters, improving code readability and reusability.





Advertisement