Difference between Collator (locale-sensitive) and compareTo (lexicographically) for comparing String values

眉间皱痕 提交于 2019-12-11 07:27:31

问题


I've been reading about using Collator and the compareTo method in String for comparing Strings. I'm unsure what the real difference is between the two from reading the API. When is one to prefer over the other?

API Collator

API String compareTo


回答1:


Promoted from my comment (which sort of half answers the question):

Use a collator: Suppose you have a contact manager for a company that has international locations. Suppose you have an autocomplete with prefix matching. The collator can allow your US employees to find a match on accented vowels in names without typing in the accents.

Use compareTo: when you don't care about situations like I just gave.




回答2:


Basically, locale-sensitive means that it takes into account the language being used and may use different weights for comparisons between different characters.

"For example, in Czech, "e" and "f" are considered primary differences, while "e" and "ě" are secondary differences, "e" and "E" are tertiary differences and "e" and "e" are identical." 1

With the lexicographical comparison of compareTo it just uses their Unicode values instead of taking these different weights into account.

"For comparing Strings exactly once, the compare method provides the best performance. When sorting a list of Strings however, it is generally necessary to compare each String multiple times. In this case, CollationKeys provide better performance. The CollationKey class converts a String to a series of bits that can be compared bitwise against other CollationKeys. A CollationKey is created by a Collator object for a given String. "1

1 Colator Javadoc



来源:https://stackoverflow.com/questions/8885885/difference-between-collator-locale-sensitive-and-compareto-lexicographically

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!