Question
stringlengths
1
113
Answer
stringlengths
22
6.98k
What is Java static block?
-Is used to initialize the static data member. -It is executed before the main method at the time of classloading.
What is static keyword in Java?
The static keyword in Java is used for memory management mainly. We can apply static keyword with variables, methods, blocks and nested classes. The static keyword belongs to the class than an instance of the class. The static can be: -Variable (also known as a class variable) -Method (also known as a class method) -Block -Nested class
Can you provide an Example of static block in Java?
class A2{ static{System.out.println("static block is invoked");} public static void main(String args[]){ System.out.println("Hello main"); } } Output:static block is invoked Hello main
what are the Usage of Java this keyword?
Here is given the 6 usage of java this keyword. 1.this can be used to refer current class instance variable. 2.this can be used to invoke current class method (implicitly) 3.this() can be used to invoke current class constructor. 4.this can be passed as an argument in the method call. 5.this can be passed as argument in the constructor call. 6.this can be used to return the current class instance from the method.
What is this keywoard in Java?
The this keyword can be used to refer current class instance variable. If there is ambiguity between the instance variables and parameters, this keyword resolves the problem of ambiguity.
How to use "this" to invoke current class method in Java?
You may invoke the method of the current class by using the this keyword. If you don't use the this keyword, compiler automatically adds this keyword while invoking the method. Let's see the example class A{ void m(){System.out.println("hello m");} void n(){ System.out.println("hello n"); //m();//same as this.m() this.m(); } } class TestThis4{ public static void main(String args[]){ A a=new A(); a.n(); }} Output: hello n hello m
How to use this() : to invoke current class constructor?
The this() constructor call can be used to invoke the current class constructor. It is used to reuse the constructor. In other words, it is used for constructor chaining. Calling default constructor from parameterized constructor: class A{ A(){System.out.println("hello a");} A(int x){ this(); System.out.println(x); } } class TestThis5{ public static void main(String args[]){ A a=new A(10); }} Output: hello a 10
What is the Real usage of this() constructor call?
The this() constructor call should be used to reuse the constructor from the constructor. It maintains the chain between the constructors i.e. it is used for constructor chaining. Let's see the example given below that displays the actual use of this keyword. class Student{ int rollno; String name,course; float fee; Student(int rollno,String name,String course){ this.rollno=rollno; this.name=name; this.course=course; } Student(int rollno,String name,String course,float fee){ this(rollno,name,course);//reusing constructor this.fee=fee; } void display(){System.out.println(rollno+" "+name+" "+course+" "+fee);} } class TestThis7{ public static void main(String args[]){ Student s1=new Student(111,"ankit","java"); Student s2=new Student(112,"sumit","java",6000f); s1.display(); s2.display(); }} Output: 111 ankit java 0.0 112 sumit java 6000.0
how to use this: to pass as an argument in the method in Java?
The this keyword can also be passed as an argument in the method. It is mainly used in the event handling. Let's see the example: class S2{ void m(S2 obj){ System.out.println("method is invoked"); } void p(){ m(this); } public static void main(String args[]){ S2 s1 = new S2(); s1.p(); } } Output: method is invoked
how to use this: to pass as argument in the constructor call in Java?
We can pass the this keyword in the constructor also. It is useful if we have to use one object in multiple classes. Let's see the example: class B{ A4 obj; B(A4 obj){ this.obj=obj; } void display(){ System.out.println(obj.data);//using data member of A4 class } } class A4{ int data=10; A4(){ B b=new B(this); b.display(); } public static void main(String args[]){ A4 a=new A4(); } } Output:10
Can you provide an Example of this keyword that you return as a statement from the method in Java?
class A{ A getA(){ return this; } void msg(){System.out.println("Hello java");} } class Test1{ public static void main(String args[]){ new A().getA().msg(); } } Output: Hello java
how to provee this keyword in java?
Let's prove that this keyword refers to the current class instance variable. In this program, we are printing the reference variable and this, output of both variables are same. class A5{ void m(){ System.out.println(this);//prints same reference ID } public static void main(String args[]){ A5 obj=new A5(); System.out.println(obj);//prints the reference ID obj.m(); } } Output: A5@22b3ea59 A5@22b3ea59
What is Inheritance in Java?
Inheritance in Java is a mechanism in which one object acquires all the properties and behaviors of a parent object. It is an important part of OOPs (Object Oriented programming system). The idea behind inheritance in Java is that you can create new classes that are built upon existing classes. When you inherit from an existing class, you can reuse methods and fields of the parent class. Moreover, you can add new methods and fields in your current class also. Inheritance represents the IS-A relationship which is also known as a parent-child relationship.
Why use inheritance in java?
-For Method Overriding (so runtime polymorphism can be achieved). -For Code Reusability.
What are the Terms used in Inheritance?
-Class: A class is a group of objects which have common properties. It is a template or blueprint from which objects are created. -Sub Class/Child Class: Subclass is a class which inherits the other class. It is also called a derived class, extended class, or child class. -Super Class/Parent Class: Superclass is the class from where a subclass inherits the features. It is also called a base class or a parent class. -Reusability: As the name specifies, reusability is a mechanism which facilitates you to reuse the fields and methods of the existing class when you create a new class. You can use the same fields and methods already defined in the previous class.
What are The syntax of Java Inheritance?
class Subclass-name extends Superclass-name { //methods and fields } The extends keyword indicates that you are making a new class that derives from an existing class. The meaning of "extends" is to increase the functionality. In the terminology of Java, a class which is inherited is called a parent or superclass, and the new class is called child or subclass.
Whaht are the Types of inheritance in java?
On the basis of class, there can be three types of inheritance in java: single, multilevel and hierarchical. In java programming, multiple and hybrid inheritance is supported through interface only. When one class inherits multiple classes, it is known as multiple inheritance.
Can you provide an Single Inheritance Example in Java?
When a class inherits another class, it is known as a single inheritance. In the example given below, Dog class inherits the Animal class, so there is the single inheritance. class Animal{ void eat(){System.out.println("eating...");} } class Dog extends Animal{ void bark(){System.out.println("barking...");} } class TestInheritance{ public static void main(String args[]){ Dog d=new Dog(); d.bark(); d.eat(); }} Output: barking... eating...
Can you provide an Multilevel Inheritance Example in Java?
When there is a chain of inheritance, it is known as multilevel inheritance. As you can see in the example given below, BabyDog class inherits the Dog class which again inherits the Animal class, so there is a multilevel inheritance. class Animal{ void eat(){System.out.println("eating...");} } class Dog extends Animal{ void bark(){System.out.println("barking...");} } class BabyDog extends Dog{ void weep(){System.out.println("weeping...");} } class TestInheritance2{ public static void main(String args[]){ BabyDog d=new BabyDog(); d.weep(); d.bark(); d.eat(); }} Output: weeping... barking... eating...
Can you provide an Hierarchical Inheritance Example in Java?
When two or more classes inherits a single class, it is known as hierarchical inheritance. In the example given below, Dog and Cat classes inherits the Animal class, so there is hierarchical inheritance. class Animal{ void eat(){System.out.println("eating...");} } class Dog extends Animal{ void bark(){System.out.println("barking...");} } class Cat extends Animal{ void meow(){System.out.println("meowing...");} } class TestInheritance3{ public static void main(String args[]){ Cat c=new Cat(); c.meow(); c.eat(); //c.bark();//C.T.Error }} Output: meowing... eating...
Why multiple inheritance is not supported in java?
As we have explained in the inheritance chapter, multiple inheritance is not supported in the case of class because of ambiguity. However, it is supported in case of an interface because there is no ambiguity. It is because its implementation is provided by the implementation class. For example: interface Printable{ void print(); } interface Showable{ void print(); } class TestInterface3 implements Printable, Showable{ public void print(){System.out.println("Hello");} public static void main(String args[]){ TestInterface3 obj = new TestInterface3(); obj.print(); } } Output: Hello
Can you provide an Simple Example of Aggregation?
In this example, we have created the reference of Operation class in the Circle class. class Operation{ int square(int n){ return n*n; } } class Circle{ Operation op;//aggregation double pi=3.14; double area(int radius){ op=new Operation(); int rsquare=op.square(radius);//code reusability (i.e. delegates the method call). return pi*rsquare; } public static void main(String args[]){ Circle c=new Circle(); double result=c.area(5); System.out.println(result); } } Output:78.5
When use Aggregation?
-Code reuse is also best achieved by aggregation when there is no is-a relationship. -Inheritance should be used only if the relationship is-a is maintained throughout the lifetime of the objects involved; otherwise, aggregation is the best choice.
What is Method Overloading in Java?
If a class has multiple methods having same name but different in parameters, it is known as Method Overloading. If we have to perform only one operation, having same name of the methods increases the readability of the program. Suppose you have to perform addition of the given numbers but there can be any number of arguments, if you write the method such as a(int,int) for two parameters, and b(int,int,int) for three parameters then it may be difficult for you as well as other programmers to understand the behavior of the method because its name differs. So, we perform method overloading to figure out the program quickly.
What is the Advantage of method overloading?
Method overloading increases the readability of the program. Different ways to overload the method There are two ways to overload the method in java 1.By changing number of arguments 2.By changing the data type
Why Method Overloading is not possible by changing the return type of method only?
In java, method overloading is not possible by changing the return type of the method only because of ambiguity. Let's see how ambiguity may occur: class Adder{ static int add(int a,int b){return a+b;} static double add(int a,int b){return a+b;} } class TestOverloading3{ public static void main(String[] args){ System.out.println(Adder.add(11,11));//ambiguity }} Output: Compile Time Error: method add(int,int) is already defined in class Adder
Can we overload java main() method?
Yes, by method overloading. You can have any number of main methods in a class by method overloading. But JVM calls main() method which receives string array as arguments only. Let's see the simple example: class TestOverloading4{ public static void main(String[] args){System.out.println("main with String[]");} public static void main(String args){System.out.println("main with String");} public static void main(){System.out.println("main without args");} } Output: main with String[]
What is Method Overloading and Type Promotion?
One type is promoted to another implicitly if no matching datatype is found. To understand the concept, byte can be promoted to short, int, long, float or double. The short datatype can be promoted to int, long, float or double. The char datatype can be promoted to int,long,float or double and so on.
Can you provide an Example of Method Overloading with TypePromotion in Java?
class OverloadingCalculation1{ void sum(int a,long b){System.out.println(a+b);} void sum(int a,int b,int c){System.out.println(a+b+c);} public static void main(String args[]){ OverloadingCalculation1 obj=new OverloadingCalculation1(); obj.sum(20,20);//now second int literal will be promoted to long obj.sum(20,20,20); } } Output:40 60
Can you provide an Example of Method Overloading with Type Promotion if matching found in Java?
If there are matching type arguments in the method, type promotion is not performed. class OverloadingCalculation2{ void sum(int a,int b){System.out.println("int arg method invoked");} void sum(long a,long b){System.out.println("long arg method invoked");} public static void main(String args[]){ OverloadingCalculation2 obj=new OverloadingCalculation2(); obj.sum(20,20);//now int arg sum() method gets invoked } } Output:int arg method invoked
Can you provide an Example of Method Overloading with Type Promotion in case of ambiguity in Java?
If there are no matching type arguments in the method, and each method promotes similar number of arguments, there will be ambiguity. class OverloadingCalculation3{ void sum(int a,long b){System.out.println("a method invoked");} void sum(long a,int b){System.out.println("b method invoked");} public static void main(String args[]){ OverloadingCalculation3 obj=new OverloadingCalculation3(); obj.sum(20,20);//now ambiguity } } Output:Compile Time Error
What is Method Overriding in Java?
If subclass (child class) has the same method as declared in the parent class, it is known as method overriding in Java. In other words, If a subclass provides the specific implementation of the method that has been declared by one of its parent class, it is known as method overriding.
What are the Usage of Java Method Overriding?
-Method overriding is used to provide the specific implementation of a method which is already provided by its superclass. -Method overriding is used for runtime polymorphism
What are the Rules for Java Method Overriding?
1.The method must have the same name as in the parent class 2.The method must have the same parameter as in the parent class. 3.There must be an IS-A relationship (inheritance).
Can you provide an Example of method overriding in Java?
In this example, we have defined the run method in the subclass as defined in the parent class but it has some specific implementation. The name and parameter of the method are the same, and there is IS-A relationship between the classes, so there is method overriding. //Java Program to illustrate the use of Java Method Overriding //Creating a parent class. class Vehicle{ //defining a method void run(){System.out.println("Vehicle is running");} } //Creating a child class class Bike2 extends Vehicle{ //defining the same method as in the parent class void run(){System.out.println("Bike is running safely");} public static void main(String args[]){ Bike2 obj = new Bike2();//creating object obj.run();//calling method } } Output: Bike is running safely
Can you provide a real example of Java Method Overriding in Java?
Consider a scenario where Bank is a class that provides functionality to get the rate of interest. However, the rate of interest varies according to banks. For example, SBI, ICICI and AXIS banks could provide 8%, 7%, and 9% rate of interest. //Java Program to demonstrate the real scenario of Java Method Overriding //where three classes are overriding the method of a parent class. //Creating a parent class. class Bank{ int getRateOfInterest(){return 0;} } //Creating child classes. class SBI extends Bank{ int getRateOfInterest(){return 8;} } class ICICI extends Bank{ int getRateOfInterest(){return 7;} } class AXIS extends Bank{ int getRateOfInterest(){return 9;} } //Test class to create objects and call the methods class Test2{ public static void main(String args[]){ SBI s=new SBI(); ICICI i=new ICICI(); AXIS a=new AXIS(); System.out.println("SBI Rate of Interest: "+s.getRateOfInterest()); System.out.println("ICICI Rate of Interest: "+i.getRateOfInterest()); System.out.println("AXIS Rate of Interest: "+a.getRateOfInterest()); } } Output: SBI Rate of Interest: 8 ICICI Rate of Interest: 7 AXIS Rate of Interest: 9
Can we override static method?
No, a static method cannot be overridden. It can be proved by runtime polymorphism, so we will learn it later.
Why can we not override static method?
It is because the static method is bound with class whereas instance method is bound with an object. Static belongs to the class area, and an instance belongs to the heap area.
Can we override java main method?
No, because the main is a static method.
What is the Difference between method Overloading and Method Overriding in java?
There are many differences between method overloading and method overriding in java. A list of differences between method overloading and method overriding are given below: 1) Method overloading is used to increase the readability of the program while Method overriding is used to provide the specific implementation of the method that is already provided by its super class. 2) Method overloading is performed within class while Method overriding occurs in two classes that have IS-A (inheritance) relationship. 3) In case of method overloading, parameter must be different while In case of method overriding, parameter must be same. 4) Method overloading is the example of compile time polymorphism while Method overriding is the example of run time polymorphism. 5) In java, method overloading can't be performed by changing return type of the method only. Return type can be same or different in method overloading. But you must have to change the parameter while Return type must be same or covariant in method overriding.
What is Covariant Return Type in Java?
The covariant return type specifies that the return type may vary in the same direction as the subclass. Before Java5, it was not possible to override any method by changing the return type. But now, since Java5, it is possible to override method by changing the return type if subclass overrides any method whose return type is Non-Primitive but it changes its return type to subclass type.
Can you provide an Simple example of Covariant Return Type in Java?
Let's take a simple example: FileName: B1.java class A{ A get(){return this;} } class B1 extends A{ @Override B1 get(){return this;} void message(){System.out.println("welcome to covariant return type");} public static void main(String args[]){ new B1().get().message(); } } Output: welcome to covariant return type
What is the Advantages of Covariant Return Type in Java?
Following are the advantages of the covariant return type. 1) Covariant return type assists to stay away from the confusing type casts in the class hierarchy and makes the code more usable, readable, and maintainable. 2) In the method overriding, the covariant return type provides the liberty to have more to the point return types. 3) Covariant return type helps in preventing the run-time ClassCastExceptions on returns. Let's take an example to understand the advantages of the covariant return type.
How is Covariant return types implemented?
Java doesn't allow the return type-based overloading, but JVM always allows return type-based overloading. JVM uses the full signature of a method for lookup/resolution. Full signature means it includes return type in addition to argument types. i.e., a class can have two or more methods differing only by return type. javac uses this fact to implement covariant return types. Output: The number 1 is not the powerful number. The number 2 is not the powerful number. The number 3 is not the powerful number. The number 4 is the powerful number. The number 5 is not the powerful number. The number 6 is not the powerful number. The number 7 is not the powerful number. The number 8 is the powerful number. The number 9 is the powerful number. The number 10 is not the powerful number. The number 11 is not the powerful number. The number 12 is not the powerful number. The number 13 is not the powerful number. The number 14 is not the powerful number. The number 15 is not the powerful number. The number 16 is the powerful number. The number 17 is not the powerful number. The number 18 is not the powerful number. The number 19 is not the powerful number. The number 20 is the powerful number.
What is Super Keyword in Java?
The super keyword in Java is a reference variable which is used to refer immediate parent class object. Whenever you create the instance of subclass, an instance of parent class is created implicitly which is referred by super reference variable.
What are the Usage of Java super Keyword?
1.super can be used to refer immediate parent class instance variable. 2.super can be used to invoke immediate parent class method. 3.super() can be used to invoke immediate parent class constructor.
Can you provide an example of super can be used to invoke parent class method in Java?
The super keyword can also be used to invoke parent class method. It should be used if subclass contains the same method as parent class. In other words, it is used if method is overridden. class Animal{ void eat(){System.out.println("eating...");} } class Dog extends Animal{ void eat(){System.out.println("eating bread...");} void bark(){System.out.println("barking...");} void work(){ super.eat(); bark(); } } class TestSuper2{ public static void main(String args[]){ Dog d=new Dog(); d.work(); }} Output: eating... barking...
Can you provide an example of super is used to invoke parent class constructor in Java?
The super keyword can also be used to invoke the parent class constructor. Let's see a simple example: class Animal{ Animal(){System.out.println("animal is created");} } class Dog extends Animal{ Dog(){ super(); System.out.println("dog is created"); } } class TestSuper3{ public static void main(String args[]){ Dog d=new Dog(); }} Output: animal is created dog is created
Can you provide a super example: real use in Java?
Let's see the real use of super keyword. Here, Emp class inherits Person class so all the properties of Person will be inherited to Emp by default. To initialize all the property, we are using parent class constructor from child class. In such way, we are reusing the parent class constructor. class Person{ int id; String name; Person(int id,String name){ this.id=id; this.name=name; } } class Emp extends Person{ float salary; Emp(int id,String name,float salary){ super(id,name);//reusing parent constructor this.salary=salary; } void display(){System.out.println(id+" "+name+" "+salary);} } class TestSuper5{ public static void main(String[] args){ Emp e1=new Emp(1,"ankit",45000f); e1.display(); }} Output: 1 ankit 45000
What is Instance initializer block in Java?
Instance Initializer block is used to initialize the instance data member. It run each time when object of the class is created. The initialization of the instance variable can be done directly but there can be performed extra operations while initializing the instance variable in the instance initializer block.
Why use instance initializer block?
Suppose I have to perform some operations while assigning value to instance data member e.g. a for loop to fill a complex array or error handling etc.
Can you provide an Example of instance initializer block in Java?
Let's see the simple example of instance initializer block that performs initialization. class Bike7{ int speed; Bike7(){System.out.println("speed is "+speed);} {speed=100;} public static void main(String args[]){ Bike7 b1=new Bike7(); Bike7 b2=new Bike7(); } } Output:speed is 100 speed is 100
What is invoked first, instance initializer block or constructor?
class Bike8{ int speed; Bike8(){System.out.println("constructor is invoked");} {System.out.println("instance initializer block invoked");} public static void main(String args[]){ Bike8 b1=new Bike8(); Bike8 b2=new Bike8(); } } Output:instance initializer block invoked constructor is invoked instance initializer block invoked constructor is invoked
What are the Rules for instance initializer block in Java?
There are mainly three rules for the instance initializer block. They are as follows: The instance initializer block is created when instance of the class is created. The instance initializer block is invoked after the parent class constructor is invoked (i.e. after super() constructor call). The instance initializer block comes in the order in which they appear.
Can you provide an example Program of instance initializer block that is invoked after super()?
class A{ A(){ System.out.println("parent class constructor invoked"); } } class B2 extends A{ B2(){ super(); System.out.println("child class constructor invoked"); } {System.out.println("instance initializer block is invoked");} public static void main(String args[]){ B2 b=new B2(); } } Output:parent class constructor invoked instance initializer block is invoked child class constructor invoked
Can you provid an example of instance block in java?
class A{ A(){ System.out.println("parent class constructor invoked"); } } class B3 extends A{ B3(){ super(); System.out.println("child class constructor invoked"); } B3(int a){ super(); System.out.println("child class constructor invoked "+a); } {System.out.println("instance initializer block is invoked");} public static void main(String args[]){ B3 b1=new B3(); B3 b2=new B3(10); } } Output: parent class constructor invoked instance initializer block is invoked child class constructor invoked parent class constructor invoked instance initializer block is invoked child class constructor invoked 10
What is Final Keyword In Java?
The final keyword in java is used to restrict the user. The java final keyword can be used in many context. Final can be: 1.variable 2.method 3.class The final keyword can be applied with the variables, a final variable that have no value it is called blank final variable or uninitialized final variable. It can be initialized in the constructor only. The blank final variable can be static also which will be initialized in the static block only. We will have detailed learning of these. Let's first learn the basics of final keyword.
What is Java final variable?
If you make any variable as final, you cannot change the value of final variable(It will be constant).
Can you provide an Example of final variable in Java?
There is a final variable speedlimit, we are going to change the value of this variable, but It can't be changed because final variable once assigned a value can never be changed. class Bike9{ final int speedlimit=90;//final variable void run(){ speedlimit=400; } public static void main(String args[]){ Bike9 obj=new Bike9(); obj.run(); } }//end of class Output:Compile Time Error
What is Java final method?
If you make any method as final, you cannot override it.
Can you provide an Example of final method in Java?
class Bike{ final void run(){System.out.println("running");} } class Honda extends Bike{ void run(){System.out.println("running safely with 100kmph");} public static void main(String args[]){ Honda honda= new Honda(); honda.run(); } } Output:Compile Time Error
What is Java final class?
If you make any class as final, you cannot extend it.
Can you provide an Example of final class in Java?
final class Bike{} class Honda1 extends Bike{ void run(){System.out.println("running safely with 100kmph");} public static void main(String args[]){ Honda1 honda= new Honda1(); honda.run(); } } Output:Compile Time Error
Is final method inherited?
Yes, final method is inherited but you cannot override it. For Example: class Bike{ final void run(){System.out.println("running...");} } class Honda2 extends Bike{ public static void main(String args[]){ new Honda2().run(); } } Output:running...
What is blank or uninitialized final variable?
A final variable that is not initialized at the time of declaration is known as blank final variable. If you want to create a variable that is initialized at the time of creating object and once initialized may not be changed, it is useful. For example PAN CARD number of an employee. It can be initialized only in constructor.
Can you provide an Example of blank final variable in Java?
class Student{ int id; String name; final String PAN_CARD_NUMBER; ... }
What is static blank final variable?
A static final variable that is not initialized at the time of declaration is known as static blank final variable. It can be initialized only in static block.
Can you provide an Example of static blank final variable in Java?
class A{ static final int data;//static blank final variable static{ data=50;} public static void main(String args[]){ System.out.println(A.data); } }
Can we declare a constructor final?
No, because constructor is never inherited.
What is Polymorphism in Java?
Polymorphism in Java is a concept by which we can perform a single action in different ways. Polymorphism is derived from 2 Greek words: poly and morphs. The word "poly" means many and "morphs" means forms. So polymorphism means many forms. There are two types of polymorphism in Java: compile-time polymorphism and runtime polymorphism. We can perform polymorphism in java by method overloading and method overriding. If you overload a static method in Java, it is the example of compile time polymorphism. Here, we will focus on runtime polymorphism in java.
What is Runtime Polymorphism in Java?
Runtime polymorphism or Dynamic Method Dispatch is a process in which a call to an overridden method is resolved at runtime rather than compile-time. In this process, an overridden method is called through the reference variable of a superclass. The determination of the method to be called is based on the object being referred to by the reference variable. Let's first understand the upcasting before Runtime Polymorphism. Upcasting If the reference variable of Parent class refers to the object of Child class, it is known as upcasting. class A{} class B extends A{} A a=new B();//upcasting For upcasting, we can use the reference variable of class type or an interface type. For Example: interface I{} class A{} class B extends A implements I{} Here, the relationship of B class would be: B IS-A A B IS-A I B IS-A Object Since Object is the root class of all classes in Java, so we can write B IS-A Object.
Can you provide an Example of Java Runtime Polymorphism?
In this example, we are creating two classes Bike and Splendor. Splendor class extends Bike class and overrides its run() method. We are calling the run method by the reference variable of Parent class. Since it refers to the subclass object and subclass method overrides the Parent class method, the subclass method is invoked at runtime. Since method invocation is determined by the JVM not compiler, it is known as runtime polymorphism. class Bike{ void run(){System.out.println("running");} } class Splendor extends Bike{ void run(){System.out.println("running safely with 60km");} public static void main(String args[]){ Bike b = new Splendor();//upcasting b.run(); } } Output: running safely with 60km.
Can you provide a Java Runtime Polymorphism Example: Bank?
Consider a scenario where Bank is a class that provides a method to get the rate of interest. However, the rate of interest may differ according to banks. For example, SBI, ICICI, and AXIS banks are providing 8.4%, 7.3%, and 9.7% rate of interest. class Bank{ float getRateOfInterest(){return 0;} } class SBI extends Bank{ float getRateOfInterest(){return 8.4f;} } class ICICI extends Bank{ float getRateOfInterest(){return 7.3f;} } class AXIS extends Bank{ float getRateOfInterest(){return 9.7f;} } class TestPolymorphism{ public static void main(String args[]){ Bank b; b=new SBI(); System.out.println("SBI Rate of Interest: "+b.getRateOfInterest()); b=new ICICI(); System.out.println("ICICI Rate of Interest: "+b.getRateOfInterest()); b=new AXIS(); System.out.println("AXIS Rate of Interest: "+b.getRateOfInterest()); } } Output: SBI Rate of Interest: 8.4 ICICI Rate of Interest: 7.3 AXIS Rate of Interest: 9.7
Can you provide an Java Runtime Polymorphism Example: Shape?
class Shape{ void draw(){System.out.println("drawing...");} } class Rectangle extends Shape{ void draw(){System.out.println("drawing rectangle...");} } class Circle extends Shape{ void draw(){System.out.println("drawing circle...");} } class Triangle extends Shape{ void draw(){System.out.println("drawing triangle...");} } class TestPolymorphism2{ public static void main(String args[]){ Shape s; s=new Rectangle(); s.draw(); s=new Circle(); s.draw(); s=new Triangle(); s.draw(); } } Output: drawing rectangle... drawing circle... drawing triangle...
Can you provide a Java Runtime Polymorphism Example: Animal?
class Animal{ void eat(){System.out.println("eating...");} } class Dog extends Animal{ void eat(){System.out.println("eating bread...");} } class Cat extends Animal{ void eat(){System.out.println("eating rat...");} } class Lion extends Animal{ void eat(){System.out.println("eating meat...");} } class TestPolymorphism3{ public static void main(String[] args){ Animal a; a=new Dog(); a.eat(); a=new Cat(); a.eat(); a=new Lion(); a.eat(); }} Output: eating bread... eating rat... eating meat...
What is Java Runtime Polymorphism with Data Member?
A method is overridden, not the data members, so runtime polymorphism can't be achieved by data members. In the example given below, both the classes have a data member speedlimit. We are accessing the data member by the reference variable of Parent class which refers to the subclass object. Since we are accessing the data member which is not overridden, hence it will access the data member of the Parent class always.
What is Java Runtime Polymorphism with Multilevel Inheritance?
Let's see the simple example of Runtime Polymorphism with multilevel inheritance. class Animal{ void eat(){System.out.println("eating");} } class Dog extends Animal{ void eat(){System.out.println("eating fruits");} } class BabyDog extends Dog{ void eat(){System.out.println("drinking milk");} public static void main(String args[]){ Animal a1,a2,a3; a1=new Animal(); a2=new Dog(); a3=new BabyDog(); a1.eat(); a2.eat(); a3.eat(); } } Output: eating eating fruits drinking Milk
What is Static Binding and Dynamic Binding?
Connecting a method call to the method body is known as binding. There are two types of binding 1.Static Binding (also known as Early Binding). 2.Dynamic Binding (also known as Late Binding).
Does variables have a type in Java?
Each variable has a type, it may be primitive and non-primitive. int data=30;
Does References have a type in Java?
class Dog{ public static void main(String args[]){ Dog d1;//Here d1 is a type of Dog } }
Doese Objects have a type in java?
An object is an instance of particular java class,but it is also an instance of its superclass. class Animal{} class Dog extends Animal{ public static void main(String args[]){ Dog d1=new Dog(); } }
What is static binding?
When type of the object is determined at compiled time(by the compiler), it is known as static binding. If there is any private, final or static method in a class, there is static binding.
Can you provide an Example of static binding in Java?
class Dog{ private void eat(){System.out.println("dog is eating...");} public static void main(String args[]){ Dog d1=new Dog(); d1.eat(); } }
What is Dynamic binding ?
When type of the object is determined at run-time, it is known as dynamic binding.
Can you provide an Example of dynamic binding in Java?
class Animal{ void eat(){System.out.println("animal is eating...");} } class Dog extends Animal{ void eat(){System.out.println("dog is eating...");} public static void main(String args[]){ Animal a=new Dog(); a.eat(); } } Output:dog is eating...
What is Java instanceof?
The java instanceof operator is used to test whether the object is an instance of the specified type (class or subclass or interface). The instanceof in java is also known as type comparison operator because it compares the instance with type. It returns either true or false. If we apply the instanceof operator with any variable that has null value, it returns false.
Can you provide a Simple example of java instanceof?
Let's see the simple example of instance operator where it tests the current class. class Simple1{ public static void main(String args[]){ Simple1 s=new Simple1(); System.out.println(s instanceof Simple1);//true } } Output:true
Can you provide Another example of java instanceof operator?
class Animal{} class Dog1 extends Animal{//Dog inherits Animal public static void main(String args[]){ Dog1 d=new Dog1(); System.out.println(d instanceof Animal);//true } }
Can you provide a example instanceof in java with a variable that have null value?
If we apply instanceof operator with a variable that have null value, it returns false. Let's see the example given below where we apply instanceof operator with the variable that have null value. class Dog2{ public static void main(String args[]){ Dog2 d=null; System.out.println(d instanceof Dog2);//false } } Output:false
What is Downcasting with java instanceof operator?
When Subclass type refers to the object of Parent class, it is known as downcasting. If we perform it directly, compiler gives Compilation error. If you perform it by typecasting, ClassCastException is thrown at runtime. But if we use instanceof operator, downcasting is possible. Dog d=new Animal();//Compilation error If we perform downcasting by typecasting, ClassCastException is thrown at runtime. Dog d=(Dog)new Animal(); //Compiles successfully but ClassCastException is thrown at runtime
What is Possibility of downcasting with instanceof?
Let's see the example, where downcasting is possible by instanceof operator. class Animal { } class Dog3 extends Animal { static void method(Animal a) { if(a instanceof Dog3){ Dog3 d=(Dog3)a;//downcasting System.out.println("ok downcasting performed"); } } public static void main (String [] args) { Animal a=new Dog3(); Dog3.method(a); } } Output:ok downcasting performed
How to downcast without the use of java instanceof
Downcasting can also be performed without the use of instanceof operator as displayed in the following example: class Animal { } class Dog4 extends Animal { static void method(Animal a) { Dog4 d=(Dog4)a;//downcasting System.out.println("ok downcasting performed"); } public static void main (String [] args) { Animal a=new Dog4(); Dog4.method(a); } } Output:ok downcasting performed
How to understand Real use of instanceof in java?
Let's see the real use of instanceof keyword by the example given below. interface Printable{} class A implements Printable{ public void a(){System.out.println("a method");} } class B implements Printable{ public void b(){System.out.println("b method");} } class Call{ void invoke(Printable p){//upcasting if(p instanceof A){ A a=(A)p;//Downcasting a.a(); } if(p instanceof B){ B b=(B)p;//Downcasting b.b(); } } }//end of Call class class Test4{ public static void main(String args[]){ Printable p=new B(); Call c=new Call(); c.invoke(p); } } Output: b method
What is Abstract class in Java?
A class which is declared with the abstract keyword is known as an abstract class in Java. It can have abstract and non-abstract methods (method with the body). Before learning the Java abstract class, let's understand the abstraction in Java first.
What is Abstraction in Java?
Abstraction is a process of hiding the implementation details and showing only functionality to the user. Another way, it shows only essential things to the user and hides the internal details, for example, sending SMS where you type the text and send the message. You don't know the internal processing about the message delivery.
What is Abstract Method in Java?
A method which is declared as abstract and does not have implementation is known as an abstract method. Example of abstract method abstract void printStatus();//no method body and abstract
Can you provide an Example of Abstract class that has an abstract method?
In this example, Bike is an abstract class that contains only one abstract method run. Its implementation is provided by the Honda class. abstract class Bike{ abstract void run(); } class Honda4 extends Bike{ void run(){System.out.println("running safely");} public static void main(String args[]){ Bike obj = new Honda4(); obj.run(); } } Output:running safely
How to understand the real scenario of Abstract class in Java?
In this example, Shape is the abstract class, and its implementation is provided by the Rectangle and Circle classes. Mostly, we don't know about the implementation class (which is hidden to the end user), and an object of the implementation class is provided by the factory method. A factory method is a method that returns the instance of the class. We will learn about the factory method later. In this example, if you create the instance of Rectangle class, draw() method of Rectangle class will be invoked. File: TestAbstraction1.java abstract class Shape{ abstract void draw(); } //In real scenario, implementation is provided by others i.e. unknown by end user class Rectangle extends Shape{ void draw(){System.out.println("drawing rectangle");} } class Circle1 extends Shape{ void draw(){System.out.println("drawing circle");} } //In real scenario, method is called by programmer or user class TestAbstraction1{ public static void main(String args[]){ Shape s=new Circle1();//In a real scenario, object is provided through method, e.g., getShape() method s.draw(); } } Output: drawing circle
Can you provide Another example of Abstract class in java?
abstract class Bank{ abstract int getRateOfInterest(); } class SBI extends Bank{ int getRateOfInterest(){return 7;} } class PNB extends Bank{ int getRateOfInterest(){return 8;} } class TestBank{ public static void main(String args[]){ Bank b; b=new SBI(); System.out.println("Rate of Interest is: "+b.getRateOfInterest()+" %"); b=new PNB(); System.out.println("Rate of Interest is: "+b.getRateOfInterest()+" %"); }} Output: Rate of Interest is: 7 % Rate of Interest is: 8 %
Can you provide an example of Abstract class having constructor, data member and methods?
An abstract class can have a data member, abstract method, method body (non-abstract method), constructor, and even main() method. File: TestAbstraction2.java //Example of an abstract class that has abstract and non-abstract methods abstract class Bike{ Bike(){System.out.println("bike is created");} abstract void run(); void changeGear(){System.out.println("gear changed");} } //Creating a Child class which inherits Abstract class class Honda extends Bike{ void run(){System.out.println("running safely..");} } //Creating a Test class which calls abstract and non-abstract methods class TestAbstraction2{ public static void main(String args[]){ Bike obj = new Honda(); obj.run(); obj.changeGear(); } } Output: bike is created running safely.. gear changed