How to create and fetch associative array in Java, like this in php
$arr[0]['name'] = 'demo';
$arr[0]['fname'] = 'fdemo';
$arr[1]['name'] = 'test';
$arr[1]['fname'] = 'fname';
|
How to create and fetch associative array in Java, like this in php
| ||||
|
feedback
|
|
Java doesn't support associative arrays, however this could easily be achieved using a
Even more accurate to your example would be to declare:
| |||||||||
feedback
|
|
Java doesn't have associative arrays like PHP does. There are various solutions for what you are doing, such as using a Map, but it depends on how you want to look up the information. You can easily write a class that holds all your information and store instances of them in an
And then...
So you can access them like...
| |||||
feedback
|
|
You can accomplish this via Maps. Something like
But as you start using Java I am sure you will find that if you create a class/model that represents your data will be your best options. I would do
| ||||
feedback
|
|
Look at the Map interface, and at the concrete class HashMap. To create a Map:
To add a key-value pair:
To retrieve the value associated with a key:
And sure, you may create an array of Maps, as it seems to be what you want:
| |||
|
feedback
|
|
There is no such thing as associative array in Java. Its closest relative is a This is the closest you can get based on your example:
| ||||
|
feedback
|
|
Java equivalent of Perl's hash
| |||
|
feedback
|
|
Java doesn't have associative arrays, the closest thing you can get is the Map interface Here's a sample from that page.
If run with:
You'll get:
| |||
|
feedback
|
|
Well i also was in search of Associative array and found the List of maps as the best solution.
| |||
|
feedback
|
|
Actually Java does support associative arrays they are called dictionaries! | |||||
feedback
|
|
In JDK 1.5 (http://tinyurl.com/3m2lxju) there is even a note: "NOTE: This class is obsolete. New implementations should implement the Map interface, rather than extending this class." Regards, N. | |||
|
feedback
|
|
Regarding the PHP comment 'No, PHP wouldn't like it'. Actually, PHP would keep on chugging unless you set some very restrictive (for PHP) exception/error levels, (and maybe not even then). What WILL happen by default is that an access to a non existing variable/out of bounds array element 'unsets' your value that you're assigning to. NO, that is NOT null. PHP has a Perl/C lineage, from what I understand. So there are: unset and non existing variables, values which ARE set but are NULL, Boolean False values, then everything else that standard langauges have. You have to test for those separately, OR choose the RIGHT evaluation built in function/syntax. | |||
|
feedback
|
|
PHP will generate a "Notice" and continue running if you attempt to access a variable that isn't set. Well written code will not generate notices, they are a sign of poor code, but it won't terminate the program. | |||
|
feedback
|