解説動画
リストから配列。配列からリストへ変換します。
■動画はこちら
■Youtube版の解説で使用しているソースコード
動画と一緒にこちらも参考にどうぞ。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | import java.util.Arrays; import java.util.List; public class ArrayToList { public static void main(String[] args) { //変換元の配列を用意 String[] str = { "武田信玄", "上杉謙信", "織田信長", "豊臣秀吉", "徳川家康" }; //配列からリストに変換 List<String> strList = Arrays.asList(str); //変換後のリストを出力 for(String s : strList) { System.out.println(s); } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import java.util.ArrayList; import java.util.List; public class ListToArray { public static void main(String[] args) { //変換元のリストを用意 List<String> strList = new ArrayList<String>(); strList.add("武田信玄"); strList.add("上杉謙信"); strList.add("織田信長"); strList.add("豊臣秀吉"); strList.add("徳川家康"); //リストから配列に変換 String[] strArray = strList.toArray(new String[strList.size()]); //変換後の配列を出力 for(String s : strArray) { System.out.println(s); } } } |