Skip to main content

Passing Object as Parameter in Java

Passing Object as Parameter 

Passing Object Example


class BOX {
    int height;
    int width;

    BOX(int h, int w) {            // parameterized constructor
        height = h;
        width = w;
    }

    void area(BOX b1) {            // area function having object b1 in parameter
        int areabox = b1.height * b1.width; // initialize areabox having product result
        System.out.println("Area of Box : " 
                                + areabox);
    }
}

class BoxExample {
    public static void main(String args[]) {
        BOX b1 = new BOX(10, 20);        // constructor calling with parameter
        b1.area(b1);    // calling fuction with object
    }
}

Output of the program :
Area of Box : 200

Explanation :

  1. We can pass Object of any class as parameter to a method in java.
  2. We can access the instance variables of the object passed inside the called method.
areabox = b1.height * b1.width
  1. It is good practice to initialize instance variables of an object before passing object as parameter to method otherwise it will take default initial values.

Different Ways of Passing Object as Parameter :

1 : By directly passing Object Name

class BOX {
    int height;
    int width;

    BOX(int h, int w) {            // parameterized constructor
        height = h;
        width = w;
    }
void area(BOX b1) {
        int areaOfBox = b1.height * b1.width;
        System.out.println("Area of Box : " 
                                + areaOfBox);
    }

class BoxExample {
    public static void main(String args[]) {
        BOX b1 = new BOX(10, 20);
        b1.area(b1);
    }

2 : By passing Instance Variables one by one


class BOX {
    int height;
    int width;

    void area(int height, int width) {
        int areaOfBox = height * width;
        System.out.println("Area of Box : "
                    + areaOfBox);
    }
}

class BoxExample {
    public static void main(String args[]) {
        BOX r1 = new BOX();
        BOX r2 = new BOX();

        b1.height = 20;
        b1.width = 10;

        r2.area(b1.height, b1.width);
    }
}
Actually this is not a way to pass the object to method. but this program will explain you how to pass instance variables of particular object to calling method.

3 : We can pass only public data of object to the Method.

Suppose we made width variable of a class private then we cannot update value in a main method since it does not have permission to access it.
private int width;
after making width private –
class BOXExample {
    public static void main(String args[]) {
        BOX b1 = new BOX();
        BOX b2 = new BOX();

        b1.height = 20;
        b1.width = 10;        //it is not access because width is private

        b2.area(b1.height, b1.width);
    }
}

Comments

Popular posts from this blog

Switch Case

Syntax : Switch Case in Java Programming It is alternative to else-if ladder. Switch Case Syntax is similar to – C/C++  Switch. Switch allows you to choose a block of statements to run from a selection of code, based on the return value of an expression. The expression used in the switch statement must return an  int, a String, or an enumerated value . switch (selection) { // value case value1 : // checking value 1 statement ( s ) ; break ; // use to break switch flow if condition match case value2 : // checking value 2 statement ( s ) ; break ; . . case value_n : statement ( s ) ; break ; default : statement ( s ) ; } Different Ways of Using Switch Case : Switch Case Using Integer Case int i=3; switch (i) { case 1 : System . out . println ( "One player is playing this game." ) ; break ; case 2 : System . out . println ( "Two players are playing ...

Multilevel inheritance

Multilevel inheritance We discussed a bit about  Multilevel inheritance  in types of inheritance in java. In this tutorial we will explain multilevel inheritance with the help of   diagram  and  example program . It’s pretty clear with the diagram that in Multilevel inheritance there is a concept of grand parent class. If we take the example of above diagram then class C inherits class B and class B inherits class A which means B is a parent class of C and A is a parent class of B. So in this case class C is implicitly inheriting the properties and method of class A along with B that’s what is called multilevel inheritance. Example : In this example we have three classes –  Car, Maruti and Maruti800. We have done a setup – class Maruti extends Car and class Maurit800 extends Maurti. With the help of this Multilevel hierarchy setup our Maurti800 class is able to use the methods of both the classes (Car and Maruti). class Car { ...

Inheritance in Java

Inheritance in Java Inheritance  is one of the feature of Object-Oriented Programming (OOPs). Inheritance allows a class to use the properties and methods of another class. In other words, the derived class inherits the states and behaviors from the base class. The derived class is also called subclass and the base class is also known as super-class . The derived class can add its own additional variables and methods. These additional variable and methods differentiates the derived class from the base class. Inheritance is a  compile-time  mechanism. A super-class can have any number of subclasses . But a subclass can have only one superclass. This is because Java does not support multiple inheritance. The superclass and subclass have  “is-a”  relationship between them. Let’s have a look at the example below. Inheritance  Example Let’s consider a superclass  Vehicle . Different vehicles have different features and properties howeve...