Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating the Leg Objects this way

List<Leg> legs = new ArrayList<Leg>(legdata.length);

I need to pass this legs to an method with the below signature as shown :

 public static String getStrategy(Leg[] leg)

when i did the below way i am getting an error .

String resultData = CMPUtil.getStrategy(legs.toArray());

Also tried this way

Leg les[] = (Leg)legs.toArray();  ( It says cannot cast from Object to Leg)

could anybody please let me know , how to resolve this ??

share|improve this question

3 Answers

up vote 2 down vote accepted

try

String resultData = CMPUtil.getStrategy((Leg [])legs.toArray(new Leg[legs.size()]));
share|improve this answer
Thank you all very much , (Unfortunately i could select only one answer) – Preethi Jain Nov 3 '11 at 14:54

Pass in an array of the right type to the other overload of List.toArray:

Leg[] legsArray = legs.toArray(new Leg[0]); // Or new Leg[legs.size()]
share|improve this answer

Leg les[] = legs.toArray(new Leg[legs.length]);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.