码迷,mamicode.com
首页 > 编程语言 > 详细

在 Java 中不使用多余变量交换两个字符串

时间:2019-08-03 01:04:02      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:rgs   static   变量   ati   int   交换   world   public   hello   

在 Java 中不使用多余变量交换两个字符串

public class Test {
    public static void main(String[] args) {
        String a = "Hello";
        String b = "World";
        System.out.println("Strings before swap: a = " + a + " and b = " + b);

        a = a + b;
        b = a.substring(0, a.length() - b.length());
        a = a.substring(b.length());

        System.out.println("Strings after swap: a = " + a + " and b = " + b);
    }
}

Strings before swap: a = Hello and b = World
Strings after swap: a = World and b = Hello

在 Java 中不使用多余变量交换两个字符串

标签:rgs   static   变量   ati   int   交换   world   public   hello   

原文地址:https://www.cnblogs.com/hglibin/p/11291666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!