Help comparing float member variables using Comparators
问题 I am able to compare Strings fine, but would like to know how I can rank floating point numbers? getChange() returns a String. I want to be able to sort descending. How can I do this? UPDATE: package org.stocktwits.helper; import java.util.Comparator; import org.stocktwits.model.Quote; public class ChangeComparator implements Comparator<Quote> { public int compare(Quote o1, Quote o2) { float change1 = Float.valueOf(o1.getChange()); float change2 = Float.valueOf(o2.getChange()); if (change1 <