如何在Java中创建和获取关联数组,就像在PHP中一样?
例如:
$arr[0]['name'] = 'demo';
$arr[0]['fname'] = 'fdemo';
$arr[1]['name'] = 'test';
$arr[1]['fname'] = 'fname';
如何在Java中创建和获取关联数组,就像在PHP中一样?
例如:
$arr[0]['name'] = 'demo';
$arr[0]['fname'] = 'fdemo';
$arr[1]['name'] = 'test';
$arr[1]['fname'] = 'fname';
当前回答
使用ArrayList < Map < String, String > >
下面是一个代码示例:
ArrayList<Map<String, String>> products = new ArrayList<Map<String, String>>();
while (iterator.hasNext()) {
Map<String, String> product = new HashMap<String, String>();
Element currentProduct = iterator.next();
product.put("id",currentProduct.get("id"));
product.put("name" , currentProduct.get("name") );
products.add(product );
}
System.out.println("products : " + products);
输出:
产品:[{id=0001, name=prod1}, {id=0002, name=prod2}]
其他回答
关于PHP评论“不,PHP不会喜欢它”。实际上,除非您设置了一些非常严格的异常/错误级别(甚至可能没有设置),否则PHP将继续运行。
默认情况下,访问一个不存在的变量/越界数组元素会“取消”你正在赋值的值。NO,它不是空的。据我所知,PHP继承了Perl/C。所以有:未设置和不存在的变量,值是设置但为NULL,布尔值为False,还有标准语言中所有的东西。你必须分别测试这些,或者选择正确的函数/语法内建的计算。
在JDK 1.5 (http://tinyurl.com/3m2lxju)中甚至有一个注释:“注意:这个类已经过时了。新的实现应该实现Map接口,而不是扩展这个类。” 问候,N。
在Java中没有关联数组这种东西。它最接近的亲戚是Map,它是强类型的,但是语法/API没有那么优雅。
这是基于你的例子你能得到的最接近的结果:
Map<Integer, Map<String, String>> arr =
org.apache.commons.collections.map.LazyMap.decorate(
new HashMap(), new InstantiateFactory(HashMap.class));
//$arr[0]['name'] = 'demo';
arr.get(0).put("name", "demo");
System.out.println(arr.get(0).get("name"));
System.out.println(arr.get(1).get("name")); //yields null
再仔细考虑一下,我想把元组作为处理这个问题的一种更通用的方式。虽然元组不是Java原生的,但我使用Javatuples来提供其他语言中存在的相同功能。如何处理所问问题的一个例子是
Map<Pair<Integer, String>, String> arr = new HashMap<Pair<Integer, String>, String>();
Pair p1 = new Pair(0, "name");
arr.put(p1, "demo");
我喜欢这种方法,因为它可以通过api提供的类和方法扩展到三元组和其他更高阶的分组。
Java不像PHP那样有关联数组。
对于您正在做的事情,有各种解决方案,例如使用Map,但这取决于您想如何查找信息。您可以轻松地编写一个类来保存所有信息,并将它们的实例存储在ArrayList中。
public class Foo{
public String name, fname;
public Foo(String name, String fname){
this.name = name;
this.fname = fname;
}
}
然后……
List<Foo> foos = new ArrayList<Foo>();
foos.add(new Foo("demo","fdemo"));
foos.add(new Foo("test","fname"));
所以你可以像…
foos.get(0).name;
=> "demo"