Languages
[Edit]
EN

Java - create List with values initialized on creation

0 points
Created by:
Palusbug
515

In this article, we would like to show you how to create List with values initialized on creation in Java.

Quick solution:

List<Integer> numbers = Arrays.asList(1, 2, 3);
System.out.println(numbers);  // [1, 2, 3]

 

Practical example

In this example, we use Arrays.asList() method to add items to the list on its creation.

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

public class Example {

    public static void main(String[] args) {
        List<Integer> numbers = Arrays.asList(1, 2, 3);
        System.out.println("Numbers: " + numbers);  // [1, 2, 3]

        List<String> letters = Arrays.asList("A", "B", "C");
        System.out.println("Letters: " + letters);  // [A, B, C]
    }
}

Output:

Numbers: [1, 2, 3]
Letters: [A, B, C]

Related posts

Alternative titles

  1. Java - add items to List on creation
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join