比较 this 和 other 的实际版本大小.
this
如:
SemVersion("1.0.0-RC").compareTo(SemVersion("1.0-RC")) == 0 (然而对他们进行 equals 判断会返回 false)
SemVersion("1.0.0-RC").compareTo(SemVersion("1.0-RC")) == 0
false
SemVersion("1.3.0") > SemVersion("1.1.0") == true (因为 1.3.0 比 1.1.0 更高)
SemVersion("1.3.0") > SemVersion("1.1.0") == true
当 this 比 other 更高时返回一个正数. 当 this 比 other 更低时返回一个负数. 当 this 与 other 版本大小相等时返回 0.