I have an array of objects named x (that is Object[] x).
When I call x[0], it give me a bunch of (double) numbers, like:
1.111
1.344
433.22...
How could I store these numbers into a new ArrayList? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How about:
Doesn’t guarantee that the
Listis anArrayList, but that probably doesn’t matter (in fact, it is an ArrayList, if you look at the JDK source).