Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.ArrayList;

public class Main {
    public static void main(String[] args) {

        ArrayList<Integer> arrlist = new ArrayList<Integer>(5);

        arrlist.add(25);

        boolean retval = arrlist.isEmpty();
        if (retval == true) {
            System.out.println("list is empty");
        } else {
            System.out.println("list is not empty");
        }

    }
}