如何在不使用第三个变量的情况下在 Java 中交换两个字符串?


无需第三个内容交换两个字符串(假定为 s1 和 s2)的内容。

  • 首先使用连接运算符“+”连接给定的两个字符串,并存储在 s1(第一个字符串)中。

s1 = s1+s2;
  • String 类的子字符串方法用于此方法具有两个变量,并返回一个作为此字符串的子字符串的新字符串。此子字符串从指定索引处的字符开始,并一直扩展到此字符串的末尾,或在给出第二个参数时直到 endIndex - 1。

    现在使用 String 类的substring() 方法在 s2 中存储 s1 的值,反之亦然。

s2 = s1.substring(0,i);
s1 = s1.substring(i);

例如

实时演示

public class Sample {
   public static void main(String args[]){
      String s1 = "tutorials";
      String s2 = "point";
      System.out.println("Value of s1 before swapping :"+s1);
      System.out.println("Value of s2 before swapping :"+s2);
      int i = s1.length();
      s1 = s1+s2;
      s2 = s1.substring(0,i);
      s1 = s1.substring(i);
      System.out.println("Value of s1 after swapping :"+s1);
      System.out.println("Value of s2 after swapping :"+s2);
   }
}

输出

Value of s1 before swapping :tutorials
Value of s2 before swapping :point
Value of s1 after swapping :point
Value of s2 after swapping :tutorials

更新于:2019 年 7 月 30 日

1 千多个查看次数

开启你的 职业

通过完成课程获得认证

开始
广告