Datasets:

ArXiv:
License:
File size: 310 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
public class StringAssignChangeDemo {
    public static void main(String[] args) {
        String s1 = "Noah";
        String s2 = s1;
        System.out.println(s1);
        System.out.println(s2 + "\n");

        s1 = "Charles";
        System.out.println(s1);
        System.out.println(s2 + "\n");
    }
}