Link to home
Start Free TrialLog in
Avatar of gudii9
gudii9Flag for United States of America

asked on

array to arraylist

Hi,

I am working on below program

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Numbers {

public static void main(String[] args) { 


List<int[]> arrayList = new ArrayList<int[]>();

int[] srtArray = {1,2,3,100,201,730};

arrayList.add(srtArray) ; 

for (int i=0;i<arrayList.size();i++){
System.out.println(arrayList.get(i));
}	

}
}	

Open in new window


I got gibberish output like
[I@74497449


How do i get meaningful output.
Is this is not the way i add array to array list and then display?
Please advise
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gudii9

ASKER

The good news is that if you have a List<Integer> then you don't need to do this:
for (int j=0;j<arrayList.size();j++){
System.out.println(arrayList.get(j));
}

to print them out, you can just do this:

System.out.println(arrayList) ;

List<int> i am using is instead arraylist of primitive not wrapper type right?



for (int i=0;i<arrayList.size();i++){
System.out.println(arrayList.get(i)); /* prints out the object reference for all objects in arrayList, of which there is only 1, namely srtArray. Hence your 'gobbledegook' object handle ref.*/
}

Open in new window


why only one 1 reference for all bojcects in arraylist?

Does not it look the elements within the strArray list. please advise
why only one 1 reference for all bojcects in arraylist?

because you have only put one object in there.

viz :
arrayList.add(srtArray) ; //adds the array srtArray to the arrayList 

Open in new window


srtArray being the object.
Does not it look the elements within the strArray list. please advise
No it doesn't, as i explained in my last comment. You have to use the method i posted
Avatar of dpearson
dpearson

There's a big difference between this:
   List<int[]> arrayList = new ArrayList<int[]>();
where each element in the list is an array of items (very unusual to want this)

and this:
    List<Integer> arrayList = new ArrayList<Integer>();

where each element in the list is a single integer value (you almost certainly want this).
(You can'd do List<int> arrayList because Java doesn't allow it - so you do List<Integer> instead).

In either case, if you print out the elements of the list, it works by taking one element at a time and printing it.
If the element of the list is an "array of integers" then Java prints the gibberish output.

You can see the same gibberish if you just do this:
int[] srtArray = {1,2,3,100,201,730};
System.out.println(strArray) ;   // This is what is stored in the list and Java doesn't know how to print arrays

Almost certainly what you want is a List<Integer>.  Give the code I posted a try and see if it makes sense to you.  Pretty sure your original code is going down a dead end that will leave you very confused.

Doug
Avatar of gudii9

ASKER

(You can'd do List<int> arrayList because Java doesn't allow it - so you do List<Integer> instead).

i wonder why java does not allow. What is speciality of Integer compared to int. Is it is because int is not object type where as Integer is object type and list expects only object type but not primitive?
Is it is because int is not object type where as Integer is object type and list expects only object type but not primitive?

Yes that's exactly it.  A list has to be a list of objects.  It can't be a list of primitives.

Doug
Correct
Avatar of gudii9

ASKER

I ran as below

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Numbers {

public static void main(String[] args) { 


List<int[]> arrayList = new ArrayList<int[]>();

int[] srtArray = {1,2,3,100,201,730};

arrayList.add(srtArray) ; 

for (int i=0;i<arrayList.size();i++){
//System.out.println(arrayList.get(i));
System.out.println(java.util.Arrays.toString(arrayList.get(i)));
}	

}
}	

Open in new window


I got output as
[1, 2, 3, 100, 201, 730]
I got output as
 [1, 2, 3, 100, 201, 730]

. . .  still not what you were expecting, then?
:)