The Debugging Chronicles : "코드의 미학"

객체 지향 언어 특징 - 추상화(Abstraction) 본문

JAVA/자바 수업 내용

객체 지향 언어 특징 - 추상화(Abstraction)

sweetseonah1004 2024. 7. 12. 12:15

객체 지향 언어의 특징

상속성
다형성
캡슐화
추상화

추상화

What is an abstraction in Java?
 
Abstraction in Java refers to hiding the implementation details of a code and exposing only the necessary information to the user. It provides the ability to simplify complex systems by ignoring irrelevant details and reducing complexity.

 

Java의 추상화는 코드의 구현 세부 사항을 숨기고 사용자에게 필요한 정보만 노출하는 것을 말합니다 . 관련 없는 세부 사항을 무시하고 복잡성을 줄임으로써 복잡한 시스템을 단순화하는 기능을 제공합니다.