[OOP]Local variables, Parameter variables, Field variables
지역변수(Local Variable) : 로컬 변수는 특정 표현식의 컨텍스트 내에서만 사용할 수 있는 특정 변수 유형이며 해당 변수를 정의하는 함수 내에서만 액세스할 수 있습니다. 로컬 변수는 특정 메소드 내에 해당 데이터만 필요할 때 유용합니다. Local variables are a specific type of variable that are only available within the context of a particular expression and can only be accessed within the function that defines them. Local variables are useful when you only need that data within a particular e..