Created
October 10, 2022 13:47
-
-
Save SaBenBurra/4b903cfa23d44ce7b930c48eca4119ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public void main(String[] args) { | |
SampleClass myObject1 = new SampleClass(5); | |
SampleClass myObject2 = myObject1; | |
myObject2.number = 20; | |
System.out.println(myObject1.number); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment