Virtual Function in JavaA virtual function or virtual method in an OOP language is a function or method used to override the behavior of the function in an inherited class with the same signature to achieve the polymorphism. When the programmers switch the technology from C++ to Java, they think about where is the virtual function in Java. In C++, the virtual function is defined using the virtual keyword, but in Java, it is achieved using different techniques. See Virtual function in C++. Java is an object-oriented programming language; it supports OOPs features such as polymorphism, abstraction, inheritance, etc. These concepts are based on objects, classes, and member functions. By default, all the instance methods in Java are considered as the Virtual function except final, static, and private methods as these methods can be used to achieve polymorphism. How to use Virtual function in JavaThe virtual keyword is not used in Java to define the virtual function; instead, the virtual functions and methods are achieved using the following techniques:
In a nutshell, the methods or functions that can be used to achieve the polymorphism are the virtual functions or methods in Java. Let's understand it with some examples: Parent.Java: Child.java: Output: Inside the Child Class From the above example, we have used the function v1() as the virtual function by overriding it in the Child class. In Java Every non-static, non-final, and public method is a virtual function. These methods can be used to achieve polymorphism. The methods that can not be used to achieve the polymorphism never be virtual function. A static, final, and private method never be the virtual function. We can not call the static method by using the object name or class name. Even if we try, it will not be able to achieve the polymorphism. Java Interfaces as Virtual FunctionAn interface in Java is a blueprint of a class; it holds static constants and abstract methods. All Java Interfaces are considered virtual functions, as they depend on the implementing classes to provide the method implementation. Consider the below example to understand the behavior of the interface: Output: BMW X7 From the above example, we can see the interface's method is executed using the implementing class BMW. Hence, we can also achieve polymorphism using the Interfaces. Pure Virtual FunctionA virtual function for which we are not required implementation is considered as pure virtual function. For example, Abstract method in Java is a pure virtual function. Consider the below example: Output: MyPet is so sweet From the above example, the jump() method is a pure virtual function. Runtime PolymorphismRuntime polymorphism is a process in which a call to an overridden method is resolved at runtime rather than compile time. In runtime polymorphism, we will use the reference variable to call a method instead of a reference variable. The virtual functions can be used to achieve runtime polymorphism. Consider the below example to understand how the virtual function is used to achieve the runtime polymorphism: Output: Best Java Training Institute From the above example, we have achieved runtime polymorphism using the virtual function. Summary:Below are some consideration points about the Virtual function in Java:
Next TopicC, C++, vs Java |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India