Methods in Java


In Java, methods are blocks of code that perform a specific task. They are defined within classes and are invoked to execute particular operations. Methods can take input parameters, return values, and can be classified based on their behavior. Here’s a quick rundown of methods in Java:

Method Declaration Syntax

        
        returnType methodName(parameter1Type parameter1, parameter2Type parameter2, ...) {
            // Method body (code to execute)
            return returnValue; // if the returnType is not void
        }
        
        
  • returnType: Specifies what type of value the method will return. If the method does not return anything, use void.
  • methodName: The name of the method.
  • parameters: The list of parameters (also called arguments) the method takes. These are optional.
  • body: The code inside the method that defines what the method does.

Method Types in Java

  1. Instance Methods
    Instance methods operate on instances of a class (objects). They require an object to be invoked.
            
            class Car {
                String color;
    
                // Instance method
                void drive() {
                    System.out.println("The car is driving.");
                }
            }
            
            
  2. Static Methods
    Static methods belong to the class, not instances of the class. They can be called without creating an object of the class.
            
            class MathUtil {
                // Static method
                static int add(int a, int b) {
                    return a + b;
                }
            }
    
            public class Main {
                public static void main(String[] args) {
                    // Calling static method without an object
                    System.out.println(MathUtil.add(5, 10));  // Output: 15
                }
            }
            
            
  3. Abstract Methods
    Abstract methods are declared in abstract classes or interfaces. They do not have a body and must be implemented in a subclass or implementing class.
            
            abstract class Animal {
                // Abstract method (no body)
                abstract void sound();
            }
    
            class Dog extends Animal {
                // Implementing the abstract method
                void sound() {
                    System.out.println("Bark");
                }
            }
            
            
  4. Constructor Methods
    A constructor method initializes an object when it is created. It has the same name as the class and does not have a return type.
            
            class Person {
                String name;
    
                // Constructor method
                Person(String name) {
                    this.name = name;
                }
            }
            
            
  5. Getter and Setter Methods
    Getter and setter methods are used to access or modify private fields of a class.
            
            class Person {
                private String name;
    
                // Getter method
                public String getName() {
                    return name;
                }
    
                // Setter method
                public void setName(String name) {
                    this.name = name;
                }
            }
            
            

Method Overloading

Java allows you to define multiple methods with the same name but with different parameter lists (number, type, or both).

        
        class Calculator {
            // Method to add two integers
            int add(int a, int b) {
                return a + b;
            }

            // Overloaded method to add three integers
            int add(int a, int b, int c) {
                return a + b + c;
            }
        }
        
        

Method Overriding

In Java, a subclass can provide a specific implementation of a method that is already defined in its superclass. This is called method overriding.

        
        class Animal {
            void makeSound() {
                System.out.println("Animal makes a sound");
            }
        }

        class Dog extends Animal {
            // Overriding the makeSound method
                        @Override
            void makeSound() {
                System.out.println("Dog barks");
            }
        }
        
        

Varargs (Variable Arguments)

You can pass a variable number of arguments to a method. This is done using ... syntax.

        
        class Printer {
            // Varargs method to print any number of arguments
            void printNumbers(int... numbers) {
                for (int number : numbers) {
                    System.out.println(number);
                }
            }
        }
        
        

Returning Values from Methods

Methods can return values. If the method's return type is anything other than void, you must use the return keyword to return the value.

        
        class Calculator {
            // Method that returns a value
            int multiply(int a, int b) {
                return a * b;
            }
        }
        
        

Method Signature

The method signature consists of the method name and the parameter types (but not the return type). Java distinguishes methods based on their method signature. This is why you can overload methods but not differentiate them only by return type.