메서드 = 선언부 + 구현부
반환타입 메서드이름 (타입 변수명, 타입 변수명, ...) //선언부
{
//메서드 호출 시 수행될 코드 //구현부
}
int add (int a, int b) {
int result = a + b;
return result;
}
반환 값이 없다면 void add (int a, int b) { .... }
int add(int x, int y) { //중괄호부터 중괄호까지가 메서드 영역이다.
int result = a + b;
return result;
}