14

我想创建一个应包含整数和字符串的 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 & strList 放入一个新的 ArrayList 中。

我可以这样做吗?如果是这样,如何?

4

5 回答 5

10

您可以按如下方式执行此操作,但必须放弃列表容器的泛型。

List<List> listOfMixedTypes = new ArrayList<List>();

ArrayList<String> listOfStrings = new ArrayList<String>();
ArrayList<Integer> listOfIntegers = new ArrayList<Integer>();

listOfMixedTypes.add(listOfStrings);
listOfMixedTypes.add(listOfIntegers);

但是,更好的方法是使用 aMap来跟踪这两个列表,因为编译器将不再能够阻止您混合类型,例如将 String 放入 Integer 列表中。

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));
于 2013-08-03T13:29:47.973 回答
8

如果可以避免,请避免使用此对象类型列表。去个人列表。

如果没有,那么你应该选择类型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 
    }
}
于 2013-08-03T13:21:27.970 回答
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.

于 2013-08-03T14:26:40.877 回答
2
List<Object> oList=new ArrayList<Object>();
于 2013-08-03T13:22:00.743 回答
1

我正在为您提供在我的项目inquiryhere.com 中实施的示例单击此处访问

java代码...

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;
}}

Jspbean

<jsp:useBean class="com.answer.hash_Map" id="SEO"  scope="page" />

jstl 代码,我正在使用 jstl

 <c:forEach items="${SEO.getQuestionTagWithId(param.Id)}" var="tag" varStatus="loop">
                       ${tag.key}${tag.value}
 </c:forEach>
于 2019-08-21T04:28:57.207 回答