Skip to main content

Java Exception Handling MCQ Test

  Loading…

Getter and setter methods

Getter and setter methods, also known as accessor and mutator methods, are used to retrieve and modify the values of private variables (fields) in a class. They provide controlled access to the class attributes, allowing encapsulation and maintaining data integrity. Here's an example demonstrating getter and setter methods in Java:


public class Person {

    private String name;

    private int age;


    // Getter method for the name attribute

    public String getName() {

        return name;

    }


    // Setter method for the name attribute

    public void setName(String name) {

        this.name = name;

    }


    // Getter method for the age attribute

    public int getAge() {

        return age;

    }


    // Setter method for the age attribute

    public void setAge(int age) {

        if (age >= 0 && age <= 120) { // Validate age

            this.age = age;

        } else {

            System.out.println("Invalid age! Age should be between 0 and 120.");

        }

    }


    public static void main(String[] args) {

        Person person1 = new Person();

        person1.setName("Alice");

        person1.setAge(30);


        // Retrieve and display the person's name and age

        System.out.println("Person 1 - Name: " + person1.getName() + ", Age: " + person1.getAge());


        Person person2 = new Person();

        person2.setName("Bob");

        person2.setAge(-5); // Invalid age


        // Retrieve and display the person's name and age

        System.out.println("Person 2 - Name: " + person2.getName() + ", Age: " + person2.getAge());

    }

}


In this example:


We have a class Person with private attributes name and age.

Getter methods (getName and getAge) are used to access the values of these attributes from outside the class.

Setter methods (setName and setAge) are used to modify the values of these attributes. The setAge method includes validation to ensure that the age is within a valid range.

In the main method, we create two Person objects, set their attributes using setter methods, and retrieve their attributes using getter methods.

_____________________________________



If you're using constructor-based initialization for private attributes, the structure of the class and the way you initialize the attributes will be slightly different. In this approach, you would typically provide a constructor that accepts parameters for initializing the private attributes. Here's how you can modify the Person class to use constructor-based initialization:


public class Person {

    private String name;

    private int age;


    // Constructor with parameters for initializing name and age

    public Person(String name, int age) {

        this.name = name;

        if (age >= 0 && age <= 120) {

            this.age = age;

        } else {

            System.out.println("Invalid age! Age should be between 0 and 120.");

        }

    }


    // Getter method for the name attribute

    public String getName() {

        return name;

    }


    // Getter method for the age attribute

    public int getAge() {

        return age;

    }


    public static void main(String[] args) {

        // Create Person objects using the constructor

        Person person1 = new Person("Alice", 30);

        Person person2 = new Person("Bob", -5); // Invalid age


        // Retrieve and display the person's name and age using getter methods

        System.out.println("Person 1 - Name: " + person1.getName() + ", Age: " + person1.getAge());

        System.out.println("Person 2 - Name: " + person2.getName() + ", Age: " + person2.getAge());

    }

}


In this modified version:


We've removed the setter methods since the attributes are initialized through the constructor and can't be modified afterwards.

The constructor Person(String name, int age) takes parameters name and age, initializes the private attributes name and age accordingly, and performs age validation.

When creating Person objects in the main method, we provide the values for name and age directly as arguments to the constructor.


Comments

Popular posts from this blog

Passing and Returning Objects in Java Methods

Passing and Returning Objects in Java Methods In Java, objects can be passed as parameters to methods and returned from methods just like other primitive data types. This allows for flexibility and the manipulation of object state within methods. Let's explore how passing and returning objects work in Java. Passing Objects as Parameters When you pass an object as a parameter to a method, you are essentially passing a reference to that object. This means that changes made to the object inside the method will affect the original object outside the method.  Example: class Car {     String model;     Car(String model) {         this.model = model;     } } public class CarProcessor {     // Method to modify the Car object     static void modifyCar(Car car, String newModel) {         car.model = newModel;     }     public static void main(String[] args) {       ...

Why is String[] args necessary in main() method in Java?

  Why is String[] args necessary in main() method in Java? In Java, the main method serves as the entry point for the program. The correct syntax for the main method is: public static void main (String[] args) { System.out.println( "Hello, Java!" ); } 🔹 Breaking it down: public → Accessible from anywhere. static → No need to create an object of the class to run it. void → No return value. main → Special method recognized by the JVM as the starting point. String[] args → Stores command-line arguments (optional but required by JVM). Why Can't We Skip String[] args ? JVM looks for main(String[] args) When you run a Java program, the JVM searches for the main method with exactly this signature : public static void main (String[] args) If you change or remove String[] args , the JVM cannot find the correct main() method and throws a runtime error (NoSuchMethodError). Java Specification Requires It The Java Language Specification (JLS) defines that main...