• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Concrete Method

 
Ranch Hand
Posts: 159
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is Concrete Method,Example?
 
Ranch Hand
Posts: 433
Eclipse IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

As per my knowledge, Concrete and abstract are opposite to each other;

Just like abstract method doesn't have implementation detail with it, in the same manner concrete method has implementation details. for eg :


on further digging I found the following :
Suppose we have methodA in superclass, which is override by many of the subclasses, so which is the conrete method:

superclass method is called as concrete method.

Conclusion:

First implementation detail of a method let us to call the method as concrete method.

This is as per my understanding, Please correct me if I am wrong.
 
Deepak Chopra
Ranch Hand
Posts: 433
Eclipse IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

As per my knowledge, Concrete and abstract are opposite to each other;

Just like abstract method doesn't have implementation detail with it, in the same manner concrete method has implementation details. for eg :


on further digging I found the following :
Suppose we have methodA in superclass, which is override by many of the subclasses, so which is the conrete method:

superclass method is called as concrete method.

Conclusion:

First implementation detail of a method let us to call the method as concrete method.

This is as per my understanding, Please correct me if I am wrong.
 
Don't sweat petty things, or pet sweaty things. But cuddle this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic