免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5948 | 回复: 4
打印 上一主题 下一主题

compareTo()的内部是否有遍历的存在? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-11-22 23:02 |只看该作者 |倒序浏览
本人新手,最近在看compareTo()方法时在想compareTo()的内部也是有遍历的存在呢?可是在网上找不到这个,求高手讲讲其中的内部实现

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
2 [报告]
发表于 2013-11-28 21:43 |只看该作者
  1. //android的String类
  2. /*
  3. * public int compareTo(String s)
  4. */
  5. bool javaLangString_compareTo(u4 arg0, u4 arg1, u4 arg2, u4 arg3,
  6.     JValue* pResult)
  7. {
  8.     /*
  9.      * Null reference check on "this".  Normally this is performed during
  10.      * the setup of the virtual method call.  We need to do it before
  11.      * anything else.  While we're at it, check out the other string,
  12.      * which must also be non-null.
  13.      */
  14.     if ((Object*) arg0 == NULL || (Object*) arg1 == NULL) {
  15.         dvmThrowNullPointerException(NULL);
  16.         return false;
  17.     }

  18.     /* quick test for comparison with itself */
  19.     if (arg0 == arg1) {
  20.         pResult->i = 0;
  21.         return true;
  22.     }

  23.     /*
  24.      * This would be simpler and faster if we promoted StringObject to
  25.      * a full representation, lining up the C structure fields with the
  26.      * actual object fields.
  27.      */
  28.     int thisCount, thisOffset, compCount, compOffset;
  29.     ArrayObject* thisArray;
  30.     ArrayObject* compArray;
  31.     const u2* thisChars;
  32.     const u2* compChars;
  33.     int minCount, countDiff;

  34.     thisCount = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_COUNT);
  35.     compCount = dvmGetFieldInt((Object*) arg1, STRING_FIELDOFF_COUNT);
  36.     countDiff = thisCount - compCount;
  37.     minCount = (countDiff < 0) ? thisCount : compCount;
  38.     thisOffset = dvmGetFieldInt((Object*) arg0, STRING_FIELDOFF_OFFSET);
  39.     compOffset = dvmGetFieldInt((Object*) arg1, STRING_FIELDOFF_OFFSET);
  40.     thisArray = (ArrayObject*)
  41.         dvmGetFieldObject((Object*) arg0, STRING_FIELDOFF_VALUE);
  42.     compArray = (ArrayObject*)
  43.         dvmGetFieldObject((Object*) arg1, STRING_FIELDOFF_VALUE);
  44.     thisChars = ((const u2*)(void*)thisArray->contents) + thisOffset;
  45.     compChars = ((const u2*)(void*)compArray->contents) + compOffset;

  46. #ifdef HAVE__MEMCMP16
  47.     /*
  48.      * Use assembly version, which returns the difference between the
  49.      * characters.  The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
  50.      * because the interpreter converts the characters to 32-bit integers
  51.      * *without* sign extension before it subtracts them (which makes some
  52.      * sense since "char" is unsigned).  So what we get is the result of
  53.      * 0x000000e9 - 0x0000ffff, which is 0xffff00ea.
  54.      */
  55.     int otherRes = __memcmp16(thisChars, compChars, minCount);
  56. # ifdef CHECK_MEMCMP16
  57.     int i;
  58.     for (i = 0; i < minCount; i++) {
  59.         if (thisChars[i] != compChars[i]) {
  60.             pResult->i = (s4) thisChars[i] - (s4) compChars[i];
  61.             if (pResult->i != otherRes) {
  62.                 badMatch((StringObject*) arg0, (StringObject*) arg1,
  63.                     pResult->i, otherRes, "compareTo");
  64.             }
  65.             return true;
  66.         }
  67.     }
  68. # endif
  69.     if (otherRes != 0) {
  70.         pResult->i = otherRes;
  71.         return true;
  72.     }

  73. #else
  74.     /*
  75.      * Straightforward implementation, examining 16 bits at a time.  Compare
  76.      * the characters that overlap, and if they're all the same then return
  77.      * the difference in lengths.
  78.      */
  79.     int i;
  80.     for (i = 0; i < minCount; i++) {
  81.         if (thisChars[i] != compChars[i]) {
  82.             pResult->i = (s4) thisChars[i] - (s4) compChars[i];
  83.             return true;
  84.         }
  85.     }
  86. #endif

  87.     pResult->i = countDiff;
  88.     return true;
  89. }
复制代码

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
3 [报告]
发表于 2013-11-28 21:47 |只看该作者
  1. //openjdk6 的实现
  2.     /**
  3.      * Compares two strings lexicographically.
  4.      * The comparison is based on the Unicode value of each character in
  5.      * the strings. The character sequence represented by this
  6.      * <code>String</code> object is compared lexicographically to the
  7.      * character sequence represented by the argument string. The result is
  8.      * a negative integer if this <code>String</code> object
  9.      * lexicographically precedes the argument string. The result is a
  10.      * positive integer if this <code>String</code> object lexicographically
  11.      * follows the argument string. The result is zero if the strings
  12.      * are equal; <code>compareTo</code> returns <code>0</code> exactly when
  13.      * the {@link #equals(Object)} method would return <code>true</code>.
  14.      * <p>
  15.      * This is the definition of lexicographic ordering. If two strings are
  16.      * different, then either they have different characters at some index
  17.      * that is a valid index for both strings, or their lengths are different,
  18.      * or both. If they have different characters at one or more index
  19.      * positions, let <i>k</i> be the smallest such index; then the string
  20.      * whose character at position <i>k</i> has the smaller value, as
  21.      * determined by using the &lt; operator, lexicographically precedes the
  22.      * other string. In this case, <code>compareTo</code> returns the
  23.      * difference of the two character values at position <code>k</code> in
  24.      * the two string -- that is, the value:
  25.      * <blockquote><pre>
  26.      * this.charAt(k)-anotherString.charAt(k)
  27.      * </pre></blockquote>
  28.      * If there is no index position at which they differ, then the shorter
  29.      * string lexicographically precedes the longer string. In this case,
  30.      * <code>compareTo</code> returns the difference of the lengths of the
  31.      * strings -- that is, the value:
  32.      * <blockquote><pre>
  33.      * this.length()-anotherString.length()
  34.      * </pre></blockquote>
  35.      *
  36.      * @param   anotherString   the <code>String</code> to be compared.
  37.      * @return  the value <code>0</code> if the argument string is equal to
  38.      *          this string; a value less than <code>0</code> if this string
  39.      *          is lexicographically less than the string argument; and a
  40.      *          value greater than <code>0</code> if this string is
  41.      *          lexicographically greater than the string argument.
  42.      */
  43.     public int compareTo(String anotherString) {
  44.         int len1 = count;
  45.         int len2 = anotherString.count;
  46.         int n = Math.min(len1, len2);
  47.         char v1[] = value;
  48.         char v2[] = anotherString.value;
  49.         int i = offset;
  50.         int j = anotherString.offset;

  51.         if (i == j) {
  52.             int k = i;
  53.             int lim = n + i;
  54.             while (k < lim) {
  55.                 char c1 = v1[k];
  56.                 char c2 = v2[k];
  57.                 if (c1 != c2) {
  58.                     return c1 - c2;
  59.                 }
  60.                 k++;
  61.             }
  62.         } else {
  63.             while (n-- != 0) {
  64.                 char c1 = v1[i++];
  65.                 char c2 = v2[j++];
  66.                 if (c1 != c2) {
  67.                     return c1 - c2;
  68.                 }
  69.             }
  70.         }
  71.         return len1 - len2;
  72.     }
复制代码

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
4 [报告]
发表于 2013-11-28 21:47 |只看该作者
  1. //openjdk6 的实现
  2.     /**
  3.      * Compares two strings lexicographically.
  4.      * The comparison is based on the Unicode value of each character in
  5.      * the strings. The character sequence represented by this
  6.      * <code>String</code> object is compared lexicographically to the
  7.      * character sequence represented by the argument string. The result is
  8.      * a negative integer if this <code>String</code> object
  9.      * lexicographically precedes the argument string. The result is a
  10.      * positive integer if this <code>String</code> object lexicographically
  11.      * follows the argument string. The result is zero if the strings
  12.      * are equal; <code>compareTo</code> returns <code>0</code> exactly when
  13.      * the {@link #equals(Object)} method would return <code>true</code>.
  14.      * <p>
  15.      * This is the definition of lexicographic ordering. If two strings are
  16.      * different, then either they have different characters at some index
  17.      * that is a valid index for both strings, or their lengths are different,
  18.      * or both. If they have different characters at one or more index
  19.      * positions, let <i>k</i> be the smallest such index; then the string
  20.      * whose character at position <i>k</i> has the smaller value, as
  21.      * determined by using the &lt; operator, lexicographically precedes the
  22.      * other string. In this case, <code>compareTo</code> returns the
  23.      * difference of the two character values at position <code>k</code> in
  24.      * the two string -- that is, the value:
  25.      * <blockquote><pre>
  26.      * this.charAt(k)-anotherString.charAt(k)
  27.      * </pre></blockquote>
  28.      * If there is no index position at which they differ, then the shorter
  29.      * string lexicographically precedes the longer string. In this case,
  30.      * <code>compareTo</code> returns the difference of the lengths of the
  31.      * strings -- that is, the value:
  32.      * <blockquote><pre>
  33.      * this.length()-anotherString.length()
  34.      * </pre></blockquote>
  35.      *
  36.      * @param   anotherString   the <code>String</code> to be compared.
  37.      * @return  the value <code>0</code> if the argument string is equal to
  38.      *          this string; a value less than <code>0</code> if this string
  39.      *          is lexicographically less than the string argument; and a
  40.      *          value greater than <code>0</code> if this string is
  41.      *          lexicographically greater than the string argument.
  42.      */
  43.     public int compareTo(String anotherString) {
  44.         int len1 = count;
  45.         int len2 = anotherString.count;
  46.         int n = Math.min(len1, len2);
  47.         char v1[] = value;
  48.         char v2[] = anotherString.value;
  49.         int i = offset;
  50.         int j = anotherString.offset;

  51.         if (i == j) {
  52.             int k = i;
  53.             int lim = n + i;
  54.             while (k < lim) {
  55.                 char c1 = v1[k];
  56.                 char c2 = v2[k];
  57.                 if (c1 != c2) {
  58.                     return c1 - c2;
  59.                 }
  60.                 k++;
  61.             }
  62.         } else {
  63.             while (n-- != 0) {
  64.                 char c1 = v1[i++];
  65.                 char c2 = v2[j++];
  66.                 if (c1 != c2) {
  67.                     return c1 - c2;
  68.                 }
  69.             }
  70.         }
  71.         return len1 - len2;
  72.     }
复制代码

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
5 [报告]
发表于 2013-11-28 22:32 |只看该作者
网络问题,发重了。版主删除掉一个。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP