Syntax error How to switch data from an array to array list in java?

How to switch data from an array to array list in java?



The Arrays class of the java.util package provides you a method named asList(). This method accepts an array (of objects) and converts them into a list and returns it.

Example

Live Demo

import java.util.Arrays;
import java.util.List;

public class ArrayToList {
   public static void main(String args[]) {
      Integer[] myArray = {23, 93, 56, 92, 39};
      List list = Arrays.asList(myArray);
      System.out.println(list);
   }
}

Output

[23, 93, 56, 92, 39]
Updated on: 2020-06-16T11:14:27+05:30

303 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements