Collections.sort(myarray);This probably because you should change:
class MyClass implements Comparable { ... }to
class MyClass implements Comparable<MyClass> { ... }
Collections.sort(myarray);This probably because you should change:
class MyClass implements Comparable { ... }to
class MyClass implements Comparable<MyClass> { ... }