My code:
public class MyTest {
public class StringSorter implements Comparator<String>
{
public StringSorter() {}
public int compare(String s1, String s2)
{
int l1 = s1.length();
int l2 = s2.length();
return l1-l2;
}
}
public static void main(String[] args) {
System.out.println("Hello, world!");
StringSorter sorter = new StringSorter();
Set<String> sets = new TreeSet<String>(sorter);
sets.add(new String("he"));
sets.add(new String("hel"));
sets.add(new String("he"));
sets.add(new String("hello"));
for (String s: sets)
{
System.out.println(s);
}
}
}
It will complain an error: "MyTest.java:41: non-static variable this cannot be referenced from a static context"
Remove this line will pass compile. However, we need many String objects in the 'static main' method. What's the difference between String and StringSorter?
If I change StringSorter to be static inner class, it will be compiled OK. How does static inner class fix the compile error?