我想创建一个应该包含整数和字符串的Arraylist ..这可能吗?
我创建了两个Arraylist,如下所示:
ArrayList<Integer> intList=new ArrayList<Integer>();
intList.add(1);
intList.add(2);
ArrayList<String> strList=new ArrayList<String>();
strList.add("India");
strList.add("USA");
strList.add("Canada");
我想把intList&amp; strList成新的ArrayList。
我能这样做吗?如果是这样,怎么??
答案 0 :(得分:8)
您可以按照以下方式执行此操作,但必须放弃列表容器的泛型。
List<List> listOfMixedTypes = new ArrayList<List>();
ArrayList<String> listOfStrings = new ArrayList<String>();
ArrayList<Integer> listOfIntegers = new ArrayList<Integer>();
listOfMixedTypes.add(listOfStrings);
listOfMixedTypes.add(listOfIntegers);
但是,更好的方法是使用Map
来跟踪这两个列表,因为编译器不再能够阻止你混合类型,比如将String放入整数列表。
Map<String, List> mapOfLists = new HashMap<String, List>();
mapOfLists.put("strings", listOfStrings);
mapOfLists.put("integers", listOfIntegers);
mapOfLists.get("strings").add("value");
mapOfLists.get("integers").add(new Integer(10));
答案 1 :(得分:7)
如果可以避免,请避免使用此对象类型列表。去个人名单。
如果没有,那么你应该选择Object
List<Object> list = new ArrayList<Object>();
接受所有类型的对象,但在检索时必须小心。
检索时检查对象
for (Object obj: list) {
if (obj instanceof String){
// this is string
} else if (obj instanceof Integer) {
// this is Integer
}
}
答案 2 :(得分:2)
List<Object> oList=new ArrayList<Object>();
答案 3 :(得分:2)
您可以使用标记的和类型:Either<A, B>
可以是Left<A, B>
或Right<A, B>
。在Java中,它看起来像:
public interface Either<A, B>;
public class Left<A, B> implements Either<A, B> {
public final A value;
public Left(A value) {
this.value = value;
}
}
public class Right<A, B> implements Either<A, B> {
public final B value;
public Right(B value) {
this.value = value;
}
}
因此,您可以使用ArrayList<Either<Integer, String>>
。
for (Either<Integer, String> either : intsOrStrings) {
if (either instanceof Left) {
Integer i = ((Left<Integer, String>) either).value;
} else if (either instanceof Right) {
String s = ((Right<Integer, String>) either).value;
}
}
这种方法比使用Object
更加类型安全。
答案 4 :(得分:0)
我向您提供了在我的项目中的示例示例here.com Click here to Visit
public class hash_Map {
public HashMap<Integer, String> getQuestionTagWithId(int qId) throws SQLException{
DatabaseConnection dc = new DatabaseConnection();
HashMap<Integer, String> map = new HashMap<>();
Connection con = null;
PreparedStatement ps = null;
ResultSet rs = null;
try{
con = dc.getConnection();
String sql = "select tag_id as unique_id,(select topic_name from topic where unique_id = question_topic_tag.tag_id)topic_name from question_topic_tag where question_id =?";
ps = con.prepareStatement(sql);
ps.setInt(1, qId);
rs = ps.executeQuery();
while(rs.next()){
int questionTagId = rs.getInt("unique_id");
String questionTag = rs.getString("topic_name");
map.put(questionTagId, questionTag);
}
}catch(SQLException msg){
throw msg;
}finally{
if(rs != null){
try{
rs.close();
}catch(SQLException msg){
}
}
if(ps != null){
try{
ps.close();
}catch(SQLException msg){
}
}
if(con != null){
try{
con.close();
}catch(SQLException msg){
}
}
}
return map;
}}
<jsp:useBean class="com.answer.hash_Map" id="SEO" scope="page" />
<c:forEach items="${SEO.getQuestionTagWithId(param.Id)}" var="tag" varStatus="loop">
${tag.key}${tag.value}
</c:forEach>