Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Answers were Sorted based on User's Feedback



Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use Ab..

Answer / tirumurugan

please Try Following code

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();
System.out.println("Hello World!"+a);
System.out.println("Hello World!"+a1);
}

@Override
public Object get(int index) {
// TODO Auto-generated method stub
return null;
}

@Override
public int size() {
// TODO Auto-generated method stub
return 0;
}
}

It will work without error.

Is This Answer Correct ?    3 Yes 0 No

Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use Ab..

Answer / prashanth.vuthuru

AnyOne can Please Provide The
Solution????????????????????????? Plzzzzzzz

Is This Answer Correct ?    0 Yes 0 No

Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use Ab..

Answer / raghav

Bcoz ur class ( DemoOne ) is concrete class so u r forced to provide body to that methods that r unimplemented in java.util.AbstractList

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How static variable work in java?

0 Answers  


Explain the JDB in depth & command line.

0 Answers  


What are the benefits of java?

0 Answers  


how to call a method in different package?

4 Answers  


What does it mean that strings are immutable?

0 Answers  


Describe how to implement singleton design pattern in struts.

0 Answers  


What language is an assembler written in?

0 Answers  


Describe method overriding

0 Answers  


What is parsing in grammar?

0 Answers  


What is meant by structural programming?

0 Answers  


How do you identify if jvm is 32-bit or 64-bit from java program?

0 Answers  


What is escape analysis algorithm in JVM and how garbage collection actually worked n how it transfer the objects from one kind of space to other?

0 Answers  


Categories