JAVA - 如何结合两个列表?

时间:2017-07-03 19:32:46

标签: java arrays list

public class Identifiers {
    public List<String> lowercase = Arrays.asList ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z");
    public List<String> uppercase = Arrays.asList ("A", "B", "C", "D", "E", "F", "G", "H", "I", "J"
                                        , "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V"
                                        , "W", "X", "Y", "Z");
    public List<String> number = Arrays.asList("0", "1", "2", "3", "4", "5", "6", "7", "8", "9");

}
public class ReservedSymbolsDelims {
    public List<String> delim_arithop = Arrays.asList ("nl", "tab", " ", "(", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
    public List<String> delim_5 = Arrays.asList ("nl", "tab", " ", "(", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "\"");
    public List<String> delim_6 = Arrays.asList ("nl", "tab", " ", "a", "b", "c" ,"d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9");
    public List<String> incop = Arrays.asList ("nl", "tab", " ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ".", ",");
    public List<String> delim_7 = Arrays.asList ("nl", "tab", " ", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "+", "-");
    public List<String> delim_8 = Arrays.asList (",", ".", "nl", "tab", " ", "!", "=", ")", ">", "<", "+", "-", "*", "/", "%");
    public List<String> delim_9 = Arrays.asList ("nl", "tab", " ", ".", ",", ")", "!", "=", "+", "-", "*", "/", "%", ">", "<"
                                        , "a", "b", "c", "d", "e", "f", "g", "h", "i", "j"
                                        , "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v"
                                        , "w", "x", "y", "z", "]");
    public List<String> delim_10 = Arrays.asList ("nl", "tab", " ", "/");
}

如您所见,列表小写和数字也是其他众多列表的一部分。我尝试过使用.addAll();但它不起作用。

还有其他方法可以将其他列表添加到另一个列表中吗?谢谢!

2 个答案:

答案 0 :(得分:1)

如果您正在使用Java 8,请尝试以下代码

List<String> mergelist = Stream.of(lowercase, number)
        .flatMap(List::stream)
        .collect(Collectors.toList());

答案 1 :(得分:0)

您可以像这样使用Apache库:

public List<String> alphabet = ListUtils.union(lowercase,uppercase);

更多信息:https://commons.apache.org/proper/commons-collections/apidocs/org/apache/commons/collections4/ListUtils.html