How to swap two string variables in Java without using a third variable

后端 未结 18 938
梦谈多话
梦谈多话 2021-02-02 12:30

How do I swap two string variables in Java without using a third variable, i.e. the temp variable?

String a = \"one\"
String b = \"two\"
String temp = null;
temp         


        
18条回答
  •  情深已故
    2021-02-02 13:07

    The simplest way is given below:

    String a = "one";
    String b = "two";
    System.out.println("Before swap: " a + " " + b);
    int len = a.length();
    a = a + b;
    b = a.substring(0, len);
    a = a.substring(len);
    System.out.println("After swap: " a + " " + b);
    

提交回复
热议问题