song.log

[자바 기술면접] 02. 절차 지향 프로그램 vs 객체 지향 프로그램 본문

StudyLog/Java interview

[자바 기술면접] 02. 절차 지향 프로그램 vs 객체 지향 프로그램

SingaKorean 2023. 4. 28. 16:09
반응형

-각각의 간단한 정의

절차 지향 프로그램은 특정 절차를 따르는 형식의 패러다임이며 명령을 하나씩 실행합니다.

객체 지향 프로그램은 프로그램의 단위가 데이터와 코드의 조합인 객체로 구성된 프로그램입니다.

 

 -각각의 특징

절차 지향 프로그램의 데이터는 프로그램 전체에 노출이 되어 사용되지만 객체지향 프로그램의 경우 데이터를 객체 내에서만 접근할 수 있어서 코드의 보안을 보장합니다.

 

-영어 정리 : 

In procedural program, programming logic follows certain procedures and the instructions are executed one after another. In OOP program, unit of program is object, which is nothing but combination of data and code. 

 

In procedural program, data is exposed to the whole program whereas in OOPs program, it is accessible with in the object and which in turn assures the security of the code.

반응형
Comments