java – 字符串的组合形成一个字符串给出不同的结果

前端之家收集整理的这篇文章主要介绍了java – 字符串的组合形成一个字符串给出不同的结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么当我使用下面的操作来总结字符时,它会返回数字而不是字符?不应该给出相同的结果吗?
  1. ret += ... ; // returns numbers
  2.  
  3. ret = ret + ...; // returns chars

下面的代码重复了这些字符:

doubleChar(“The”)→“TThhee”

  1. public String doubleChar(String str) {
  2.  
  3. String ret = "";
  4. for(int i = 0; i < str.length(); i++) {
  5. ret = ret + str.charAt(i) + str.charAt(i); // it concatenates the letters correctly
  6. //ret += str.charAt(i) + str.charAt(i); // it concatenates numbers
  7. }
  8. return ret;
  9. }

解决方法

以下表达式的结果
  1. ret + str.charAt(i) + str.charAt(i);

是String连接的结果. The Java language specification states

The result of string concatenation is a reference to a String object
that is the concatenation of the two operand strings. The characters
of the left-hand operand precede the characters of the right-hand
operand in the newly created string.

的结果

  1. str.charAt(i) + str.charAt(i);

是加法运算符应用于两种数值类型的结果. The Java language specification states

The binary + operator performs addition when applied to two operands
of numeric type,producing the sum of the operands.
[…]
The type of an additive expression on numeric operands is the promoted
type of its operands.

在这种情况下

  1. str.charAt(i) + str.charAt(i);

成为一个保持两个char值的和的int.然后连接到ret.

您可能还想知道关于复合赋值表达式=的信息

A compound assignment expression of the form E1 op= E2 is equivalent
to E1 = (T) ((E1) op (E2)),where T is the type of E1,except that E1
is evaluated only once.

换一种说法

  1. ret += str.charAt(i) + str.charAt(i);

相当于

  1. ret = (String) ((ret) + (str.charAt(i) + str.charAt(i)));
  2. | ^ integer addition
  3. |
  4. ^ string concatenation

猜你在找的Java相关文章