무기체계와 컴퓨터/프로그램 언어

프로그램 패러다임

xdots 2023. 10. 21. 10:57

Imperative in which the programmer instructs the machine how to change its state,

  • procedural which groups instructions into procedures,
  • object-oriented which groups instructions together with the part of the state they operate on

Declarative in which the programmer merely declares properties of the desired result, but not how to compute it

  • functional in which the desired result is declared as the value of a series of function applications,
  • logic in which the desired result is declared as the answer to a question about a system of facts and rules,
  • mathematical in which the desired result is declared as the solution of an optimization problem

'무기체계와 컴퓨터 > 프로그램 언어' 카테고리의 다른 글

Linux 명령어  (0) 2023.10.29
객체 지향 개발  (0) 2023.10.28
제어 흐름 유형  (0) 2023.10.21
SW 설계 품질 특성  (0) 2023.10.21
함수 Function  (0) 2023.10.21