Array Lists - Methods

PHOTO EMBED

Thu Oct 13 2022 20:21:00 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

import java.util.ArrayList;
import java.util.List;

public class ListsDemo {

  public static void main(String[] args) {


    List<String> koelPages = new ArrayList<>();

    koelPages.add("LoginPage");
    koelPages.set(0, "RegistrationPage");
    koelPages.add("HomePage");
    koelPages.remove( index 0);

    System.out.println(koelPages);

  }
}
content_copyCOPY