Quantcast
Channel: Learn Java Programming
Viewing all articles
Browse latest Browse all 39

Java Interview Question #2 : Can Java inherit Final Method ?

$
0
0

Que 2. Can we inherit Final Method ? Answer : Yes In case of final method, Method is inherited but cannot be overriden so always method from parent class will be executed. Consider the following example - package com.c4learn.inheritance; public class ShapeClass { final void setShape() { System.out.println("I am Inherited");; } public static void main(String[](...)

The post Java Interview Question #2 : Can Java inherit Final Method ? appeared first on Learn Java Programming.


Viewing all articles
Browse latest Browse all 39

Trending Articles