• <bdo id='CcuBm'></bdo><ul id='CcuBm'></ul>
  • <tfoot id='CcuBm'></tfoot>

    <small id='CcuBm'></small><noframes id='CcuBm'>

    <legend id='CcuBm'><style id='CcuBm'><dir id='CcuBm'><q id='CcuBm'></q></dir></style></legend>
  • <i id='CcuBm'><tr id='CcuBm'><dt id='CcuBm'><q id='CcuBm'><span id='CcuBm'><b id='CcuBm'><form id='CcuBm'><ins id='CcuBm'></ins><ul id='CcuBm'></ul><sub id='CcuBm'></sub></form><legend id='CcuBm'></legend><bdo id='CcuBm'><pre id='CcuBm'><center id='CcuBm'></center></pre></bdo></b><th id='CcuBm'></th></span></q></dt></tr></i><div id='CcuBm'><tfoot id='CcuBm'></tfoot><dl id='CcuBm'><fieldset id='CcuBm'></fieldset></dl></div>

      1. Java中将 int[] 数组 转换为 List分享

        时间:2023-12-10
      2. <i id='3q4g6'><tr id='3q4g6'><dt id='3q4g6'><q id='3q4g6'><span id='3q4g6'><b id='3q4g6'><form id='3q4g6'><ins id='3q4g6'></ins><ul id='3q4g6'></ul><sub id='3q4g6'></sub></form><legend id='3q4g6'></legend><bdo id='3q4g6'><pre id='3q4g6'><center id='3q4g6'></center></pre></bdo></b><th id='3q4g6'></th></span></q></dt></tr></i><div id='3q4g6'><tfoot id='3q4g6'></tfoot><dl id='3q4g6'><fieldset id='3q4g6'></fieldset></dl></div>

        <small id='3q4g6'></small><noframes id='3q4g6'>

            <bdo id='3q4g6'></bdo><ul id='3q4g6'></ul>
              <tbody id='3q4g6'></tbody>

            • <legend id='3q4g6'><style id='3q4g6'><dir id='3q4g6'><q id='3q4g6'></q></dir></style></legend>

              <tfoot id='3q4g6'></tfoot>

                1. 要把 int[] 数组转换成 List<Integer>,可以使用 Java 自带的工具类 Arrays 中的 asList 方法。具体步骤如下:

                  步骤一:定义 int[] 数组

                  首先需要定义一个 int[] 数组,可以通过以下代码定义一个包含三个整数的数组:

                  int[] intArray = {1, 2, 3};
                  

                  步骤二:使用 Arrays.asList() 方法将 int[] 数组转换为 List

                  使用 Arrays.asList() 方法可以将 int[] 数组转换为 List<Integer>。可以使用以下代码实现:

                  List<Integer> intList = Arrays.asList(intArray);
                  

                  注意,这里使用的是 Arrays 类的 asList() 方法,而不是 List 接口中的 add()addAll() 方法。

                  示例一:打印 int[] 数组和转换后的 List

                  public class IntArrayToList {
                      public static void main(String[] args) {
                          int[] intArray = { 1, 2, 3 };
                          List<Integer> intList = Arrays.asList(intArray);
                          System.out.println("int[] 数组:" + Arrays.toString(intArray));
                          System.out.println("转换后的 List:" + intList);
                      }
                  }
                  

                  输出结果:

                  int[] 数组:[1, 2, 3]
                  转换后的 List:[1, 2, 3]
                  

                  示例二:修改 List 中的元素并输出

                  public class IntArrayToList {
                      public static void main(String[] args) {
                          int[] intArray = { 1, 2, 3 };
                          List<Integer> intList = Arrays.asList(intArray);
                          System.out.println("修改前的 List:" + intList);
                          intList.set(1, 5);
                          System.out.println("修改后的 List:" + intList);
                      }
                  }
                  

                  输出结果:

                  修改前的 List:[1, 2, 3]
                  修改后的 List:[1, 5, 3]
                  

                  注意,使用 List.set() 方法修改 List 中的元素会同时修改原数组中对应的元素。

                  上一篇:springboot post接口接受json时,转换为对象时,属性都为null的解决 下一篇:关于@JsonProperty和@JSONField注解的区别及用法

                  相关文章

                  1. <tfoot id='gtKfI'></tfoot>

                    <small id='gtKfI'></small><noframes id='gtKfI'>

                    1. <i id='gtKfI'><tr id='gtKfI'><dt id='gtKfI'><q id='gtKfI'><span id='gtKfI'><b id='gtKfI'><form id='gtKfI'><ins id='gtKfI'></ins><ul id='gtKfI'></ul><sub id='gtKfI'></sub></form><legend id='gtKfI'></legend><bdo id='gtKfI'><pre id='gtKfI'><center id='gtKfI'></center></pre></bdo></b><th id='gtKfI'></th></span></q></dt></tr></i><div id='gtKfI'><tfoot id='gtKfI'></tfoot><dl id='gtKfI'><fieldset id='gtKfI'></fieldset></dl></div>

                        <bdo id='gtKfI'></bdo><ul id='gtKfI'></ul>
                      <legend id='gtKfI'><style id='gtKfI'><dir id='gtKfI'><q id='gtKfI'></q></dir></style></legend>