Question: interface Comparable int compareTo (0bject other) Create a class called StringLength that implements a version of the Java Comparable interface as shown above. StringLength wraps

interface Comparable int compareTo (0bject other) Create a class called StringLength that implements a version of the Java Comparable interface as shown above. StringLength wraps a String and should provide a constructor that takes a String as a single parameter, which is stored internally by each instance of StringLength. Comparable allows objects to be put in order. In this case, you should order StringLength objects based on the length of their String instance variable. Specifically compareTo should return: 1 if this object is less than other, or if other is null or not an instance of StringLength . O if other is equal to the specified object 1 if this object is greater than other When you are done your class should work as follows: StringLength first new StringLength("chuchu"); System.out.println(first.compareTo (null)); // Prints -1 System.out.println(first.compareTo(first)); // Prints0 System.out.println(first.compareTo("chuchu")); // Prints-1 StringLength secondnew StringLength("xyzypu"); System.out.println(first.compareTo(second)); // Prints StringLength third = new StringLength("ga"); System.out.println(third.compareTo(second)); // Print-1 System.out.println (second.compareTo(third)); // Print 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
