• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps create a static array of objects in java?

aidanmack

Lurker
Hi,
Im a little new too java programming. Im looking for a means to store groups of static data..
so I understand these simple string arrays...

[HIGH]
private static String[] names = new String[] {
"aidanmack",
"johnsmith"
}
private static String[] ages = new String[] {
"30",
"30"
}
[/HIGH]


But can I not combine that into an array of objects? somthing along the lines of what you would do with json? like...

[HIGH]
private static array[] multi = new array(){
{"name":"AIDANMACK","age":"30"},
{"name":"johnsmith","age":"31"}

}
[/HIGH]

Thanks
Aidan
 
The problem I see is you have two different types of variables. String and Int's and if I'm not mistaken you can't do that with an array. This is were classes and objects come into play with different attributes and methods.
 
Back
Top Bottom