如何建立一个有3个固定key值的hashmap?能形成一个类么?
留下答案后,请留下qq,会有问题便于交流。这样对么?是不是在另外的类中Templatetempmap=newTemplate();,就等于建立了一个名为tempmap的h...
留下答案后,请留下qq,会有问题便于交流。这样对么?是不是在另外的类中 Template tempmap = new Template();,就等于建立了一个名为tempmap的hashmap?
public class Template {
static HashMap tempMap = new HashMap(3);
public HashMap Template() {
tempMap.put(name,"");
tempMap.put(templateFile , "");
tempMap.put(templateDir , "");
}
} 展开
public class Template {
static HashMap tempMap = new HashMap(3);
public HashMap Template() {
tempMap.put(name,"");
tempMap.put(templateFile , "");
tempMap.put(templateDir , "");
}
} 展开
展开全部
楼上两位都说的都没有错。但楼主的例子有编译错误。public HashMap Template()需要返回一个类型,即return tempMap。另外,Template tempmap = new Template();会构建出一个HashMap,但里面是空的。因为public HashMap Template()并非构造方法,而是一个普通的类方法。如果需要在创建Template实例时就设置map的值,可以改为:
public class Template {
static HashMap tempMap = new HashMap(3);
public Template() {
tempMap.put(name,"");
tempMap.put(templateFile, "");
tempMap.put(templateDi", "");
}
}
这就类似于cwq09mm的做法。
public class Template {
static HashMap tempMap = new HashMap(3);
public Template() {
tempMap.put(name,"");
tempMap.put(templateFile, "");
tempMap.put(templateDi", "");
}
}
这就类似于cwq09mm的做法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以这样理解,其实构造方法就是为了构造该类的对象用的,就是说每个通过这个构造函数构造的对象,都会有一个HashMap的变量,但这里针对外部调用该对象的类来讲tempMap只是一个形式上的参数而已
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不如直接extends更加好,
class TempMap<K,V> extends HashMap<K,V> {
TempMap<K,V>() {
super();
this.put(1);
this.put(2);
this.put(3);
}
}
class TempMap<K,V> extends HashMap<K,V> {
TempMap<K,V>() {
super();
this.put(1);
this.put(2);
this.put(3);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询