메서드 호출
메서드의 호출 메서드 호출하는 방법 - 메서드이름 (값1, 값2, ... ); // 괄호 안에는 '작업에 필요한 값들' 적어주면 됨 메서드 호출 예 - print99danAll() // void print99danAll() 을 호출 (별다른 입력값 없이 호출 가능) - int result = add(3,5); // int add(int x, int y)를 호출하고, 결과를 result에 저장 예제) class Ex6_4 { public static void main(String args[]) { MyMath mm = new MyMath(); long result1 = mm.add(5L, 3L); long result2 = mm.subtract(5L, 3L); long result3 = mm.multipl..