java Map数组定义出现的警告

publicstaticMap<String,String>[]maps=null;publicstaticvoidnewDBParameter(intlength){m... public static Map<String, String> [] maps = null ;
public static void newDBParameter(int length){
maps = new HashMap[length] ;//黄色警告
}

maps = new HashMap[length] 这句该怎么写才消除警告
new HashMap<String,String>[length];//报错
展开
 我来答
松依03S
2013-07-16 · TA获得超过347个赞
知道小有建树答主
回答量:210
采纳率:0%
帮助的人:172万
展开全部
应该是maps = new HashMap(length)吧,数组采用[]定义。
看看hashmap构造函数:

Constructor and Description

HashMap()
Constructs an empty HashMap with the default initial
capacity (16) and the default load factor (0.75).

HashMap(int initialCapacity)
Constructs an empty HashMap with the specified initial
capacity and the default load factor (0.75).

HashMap(int initialCapacity,
float loadFactor)
Constructs an empty HashMap with the specified initial
capacity and load factor.

HashMap(Map<?
extends K,? extends V> m)
Constructs a new HashMap with the same mappings as the
specified Map.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式