crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Deine covariant return type in core java?
Question Posted on 03 Apr 2021Home >> Java >> Core Java >> Deine covariant return type in core java?

Deine covariant return type in core java?
From java5 now we can override any method by changing return type and if the return type of subclass overriding method is subclass type. And this is known as covariant return type. And covariant return type also specifies that the return type may vary in the same direction as the subclass. Below example will be more clear the covariant return type:-

class baseclass
{
 baseclass get()
  {
    return this;
  }
}

class subclass extends baseclass
{
 subclass get()
  {
    return this;
  }
void message()
{
 System.out.println("welcome to covariant return type");
}

 public static void main(String args[])
 {
  new baseclass().get().message();
 }
}
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

what is an object

what is OOAD

difference between c++ and java

what is a transient variable in java

difference between C and Java on pointers






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap