[java] 클래스 활용
·
JAVA
🔎클래스 사용 전 함수 사용 public static int add(int a, int b) { int r = a + b; return r; } public static void changeUpper(String name) { name = name.toUpperCase(); } public static void swap(int c, int d) { int t = c; //지역변수 t라서 swap의 기능이 제대로 안된다. c = d; d = t; System.out.println("c=" + c + ",d=" + d); }이때 스택은 각 함수마다 따로 있으며 리턴문은 변수 하나만 리턴할 수 있다.c=5d=8swap 메서드에서는 이렇게 swap이 된 상태로 나온다. public static ..