language: Java (sun-jdk-1.7.0_10)
date: 716 days 2 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class Main {
    
    public static void swap(String s1, String s2) {
        String tmp = s1;
        s1 = s2;
        s2 = tmp;
    }
    
    public static void main(String[] args) {
        
        String str1 = "hello";
        String str2 = "world";
        
        System.out.println(str1 + " " + str2);
        
        swap(str1, str2);
        
        System.out.println(str1 + " " + str2);
    }
}