일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- vite
- jsp
- 데이터베이스
- 밤비노
- 자바
- Programming
- sql
- DB
- Java
- 웹개발기초
- react
- MSA
- two pointers
- Spring MVC
- coding test
- Doit알고리즘코딩테스트
- html
- 웹개발
- 웹개발자
- 안드로이드
- CSS
- BCIT
- SpringFramework
- spring boot
- servlet
- MVC패턴
- job
- Bambino
- MVC
- mysql
- Today
- Total
초보 개발자의 기록
Object-oriented design 본문
Object-oriented design (OOD)
Object-oriented methodology to design a computional problem and its solution based on the consepts of objects and models. OOD works as a component of the object-oriented programming (OOP) lifecycle.
A typical object-oriented design (ODD) interview is hard because the interviewer expects interviewee to design a near-perfect solution to the given problem that covers all the edge cases.
OOD benefits software developers to design their systems efficiently. It allows code to reusable in a way that reduces redeundancy leading to shorter, more readable code. It makes easier collaborations, which increases productivity and leads to faster development of software.
Obejct-oriented Programming (OOP)
It is programming model that is dependent on the concept of object and classes.
OOP is a programming style, not a tool.
Every object has its own unique set of properties.
These properties are later accessed and modified through the use of various operations.
Essential concepts of object-oriented programming:
- Classes
- Objects
All objects have some state and behavior
A class can be thought of as a blueprint for creating objects.
- Attributes
Attributes are variables that represent the state of the object.
- Methods
Methods are like functions that represent the behavior of the object.