0
Reference Type
so if String is Reference Type shouldn't it print TestTwo instead of Test? public class MyClass { public static void main(String[] args) { String one = "Test"; method(one); System.out.println(one); } public static void method(String a){ a = "TestTwo"; } }
0 Resposta