Skip to content
Advertisement

Sort list of strings as BigDecimal in reverse order in Java

I need to sort list of strings comparing them as BigDecimal. Here is what I tried:

JavaScript
JavaScript
JavaScript

Can I somehow do this without explicitly specifying the types?

Advertisement

Answer

You can do it like this.

JavaScript

prints

JavaScript

You could also do it like this but need to declare the type parameter as a String.

JavaScript

But here is the way I would recommend doing it. BigDecimal implements the Comparable interface. So you simply map all the values to BigDecimal, sort them in reverse order, and then convert back to a String. Otherwise, the other solutions will continue to instantiate a BigDecimal object just for sorting and that could result in many instantiations.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement