Discussion :: Declarations and Access Control - General Questions (Q.No.3)
Prashant said: (Jun 13, 2013) | |
Doubt about option 4 as how can abstract class define any method? |
Siddhesh said: (Mar 14, 2015) | |
@Prashant. Abstract class means 0 to 100% abstraction. That's why abstract class can also give method implementations. If not then it will be same as that of interface. Even if we declare class abstract which actually don't have any abstract method will work. |
Hugo said: (Apr 11, 2017) | |
abstract class Class2 implements Base { protected boolean m1(){ return (5 > 7) }} (5) Needs semicolon after the return statement, otherwise, it can make it too easy. |
Divyesh said: (Dec 7, 2017) | |
Why is there no implementation for byte m2 (short s);? |
Dina said: (Dec 7, 2021) | |
Why is there no implementation for byte m2 (short s);? |
Post your comments here:
Name *:
Email : (optional)
» Your comments will be displayed only after manual approval.