Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Collections;
import java.util.SortedSet;
import java.util.TreeSet;

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

        SortedSet<String> sset = new TreeSet<String>();

        sset.add("tutorial");
        sset.add("from");
        sset.add("java2s.com");

        // get typesafe view of the sorted set
        SortedSet<String> tsset = Collections.checkedSortedSet(sset, String.class);

        System.out.println(tsset);
    }
}