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...


How will you convert an ArrayList to Arrays?

Answers were Sorted based on User's Feedback



How will you convert an ArrayList to Arrays?..

Answer / vikneswarank

Using toArray() method for example

ArrayList arr_obj=new ArrayList()
arr_obj.add("viki");
arr_obj.add("siva");

Object[] obj=arr_obj.toArray();

for further Detail go to my website :
http://www.beexpert.co.in/

Is This Answer Correct ?    11 Yes 2 No

How will you convert an ArrayList to Arrays?..

Answer / tapan kumar kundu

Using toArray() method for example

ArrayList arr_obj=new ArrayList()
arr_obj.add("viki");
arr_obj.add("siva");

Object[] obj=arr_obj.toArray();

for further Detail go to my website :
http://www.beexpert.co.in/

Is This Answer Correct ?    6 Yes 0 No

How will you convert an ArrayList to Arrays?..

Answer / vikas

using toArray() method.
example:

ArrayList<Integer> al = new ArrayList<Integer>();
al.add(1);
al.add(5);
al.add(8);
al.add(10);

//Get the array
Integer tempArray = new Integer[al.size()];
tempArray = al.toArray(tempArray);

Is This Answer Correct ?    7 Yes 1 No

How will you convert an ArrayList to Arrays?..

Answer / ramesh

ArrayList arr_obj=new ArrayList()
arr_obj.add("viki");
arr_obj.add("siva");

Object[] obj=arr_obj.toArray();

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Is char a method in java?

0 Answers  


How many inner classes can a class have?

0 Answers  


Why do we need hashmap in java?

0 Answers  


What is a boolean output?

0 Answers  


Which class is the immediate superclass of the Container class?

1 Answers  


What is difference between string and new string?

0 Answers  


What are the advantages of functions?

0 Answers  


What is the method overriding?

0 Answers  


how to write a program for chat function using core java

1 Answers   Satyam,


Explain about public and private access specifiers?

0 Answers  


What is tcp and udp?

0 Answers  


What is a local, member and a class variable?

0 Answers  


Categories