2017-07-03 14 views
-1
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()を使ってみました。しかしそれはうまくいかなかった。JAVA - どのように2つのリストを結合するのですか?

他のリストを別のリストに追加する方法はありますか?ありがとう!

+5

'のaddAllを()' 'Arrays.asList()'によって作成されたリストでは動作しません。固定サイズのリストです。しかし、 'addAll'を使って' ArrayList'(他の多くのタイプのリストの中で)に追加することができます。 –

+0

重複が必要ない場合は、リストの代わりにセットを使用することができます。 – worpet

答えて

1

は、Java 8を使用している場合は、あなたがそのようなApacheのライブラリを使用することができ、以下のコード

List<String> mergelist = Stream.of(lowercase, number) 
     .flatMap(List::stream) 
     .collect(Collectors.toList()); 
関連する問題