How to use the Comparable CompareTo on Strings in Java

后端 未结 5 1835
甜味超标
甜味超标 2020-12-29 22:33

I can use it to sort by emp id but I\'m not sure if it is possible to compare strings. I get an error the operator is undefined for strings.

public int compa         


        
5条回答
  •  粉色の甜心
    2020-12-29 22:48

    Shouldn't

    if (this.getName() == ((Emp ) i).getName())

    be

    if (this.getName().equals(i.getName()))

提交回复
热议问题