What is a marker interface?
Answer / nashiinformaticssolutions
An empty interface in Java is referred to as a Marker interface. Serializable and Cloneable are some famous examples of Marker Interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can keyword be used as identifier?
Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use AbstractList class methods(java.util.AbstractList) My Program is import java.util.*; class DemoOne extends AbstractList { public static void main(String[] args) { AbstractList a=new DemoOne();//This One is Correct?? DemoOne a1=new DemoOne();//This One is Correct?? Both Are Not Working System.out.println("Hello World!"+a); System.out.println("Hello World!"+a1); } } Error IS: DemoOne.java:2: DemoOne is not abstract and does not override abstract method get(int) in java.util.AbstractList class DemoOne extends AbstractList AnyOne can Please Provide The Solution????????????????????????? Plzzzzzzz
Who is founder of java?
What is multi level inheritance in java?
What is an example of declaration?
What is the difference between Integer and int?
Why we cannot override static method?
Is vector ordered in java?
What is serialization in java?
What is join () in java?
What is instance synchronization?
explain Anonynous inner class?