JAVA/DAY 12 _ 23.09.01 (2) 썸네일형 리스트형 class study - Private Account public class P2_privateAccountEx { public static void main(String[] args) { Test2 t2 = new Test2(); t2.a = 10; //t2.b = 20;--> 컴파일 오류가 생김. t2.c = 30; //t2.process1();--> 컴파일 오류가 생김. t2.process2(); // =================== 계좌관리 =========================== //Account a1 = new Account();// 한조의 계좌 생성 //a1.name = "한조"; // //Account a2 = new Account();// 트레의 계좌 생성 //a2.name = "트레"; //a1.balance += 10000;.. move memory public class P1_moveMemory { public static void main(String[] args) { int a = 10; Test1 t1 = new Test1(); // t1이라는 참조변수가 Test1의 주소값을 받아내는 과정 t1.do1(a); // t1이 -> 접속한다 -> do1 메서드에 (메서드 호출 문법) System.out.println(a + "이것은 main의 a값. 변수를 메서드에서 바꿔도 얘는 변하지 않는다는거"); t1.do1(a); } } class Test1{ void do1(int a){// ★★★ main에 int a = 10을 클래스로 가져오는 방법 // main의 a와 다른 메모리의 a (수를 가져올 수 있음) System.out.println(a .. 이전 1 다음