> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/programming/software-design/architecture-and-patterns/rumbaughooaoverview.md).

# RumbaughOOAOverview

## 럼바우의 객체지향 분석 기법이란?

* **객체 모델링(Object Modeling) 중심의 분석 방법**이다.
* **실제 세계를 객체(Object)로 표현하고, 이 객체들 간의 관계를 정의하여 시스템을 분석하는 기법**이다.
* **객체 모델(Object Model)**, **동적 모델(Dynamic Model)**, **기능 모델(Functional Model)** 을 사용한다.

***

## 럼바우 객체지향 분석 기법의 특징

1. **객체(Object)를 중심으로 시스템을 분석**
2. **객체 모델, 동적 모델, 기능 모델로 구성**
3. **분석 → 설계 → 구현의 전체 과정에서 일관성을 유지할 수 있도록 지원**
4. **복잡한 시스템을 계층적으로 분석할 수 있음**

***

## 럼바우 객체지향 분석의 3가지 모델

| 모델                                                                                               | 설명                   | 주요 요소                                                      | 요약               |
| ------------------------------------------------------------------------------------------------ | -------------------- | ---------------------------------------------------------- | ---------------- |
| <p><a href="/pages/5b6305b2382234c9d94039795ed95884df1d48dd">객체 모델<br>(Object Model)</a></p>     | 시스템을 구성하는 객체와 관계를 정의 | 클래스(Class), 속성(Attribute), 관계(Relationship) - 클래스 다이어그램 사용 | 데이터 구조 중심        |
| <p><a href="/pages/0b9c132d1ecfff348466a0b32dda2a4548f1afe4">동적 모델<br>(Dynamic Model)</a></p>    | 객체 간의 상태 변화와 이벤트를 표현 | 상태(State), 이벤트(Event) - 상태 다이어그램(State Diagram) 사용         | 시간에 따른 변화 중심     |
| <p><a href="/pages/53374259b768febaca5f6ad7fceb88d4ff1290ac">기능 모델<br>(Functional Model)</a></p> | 시스템의 데이터 흐름과 연산을 정의  | 데이터 흐름도(DFD), 프로세스(Process), 데이터 저장소                       | 데이터 흐름 및 프로세스 중심 |

***

## 럼바우 기법의 장점과 단점

| 장점                                             | 단점                                 |
| ---------------------------------------------- | ---------------------------------- |
| 시스템을 객체 기반으로 분석하여 **재사용성이 높다.**                | 다이어그램이 많아지면 **복잡해진다.**             |
| 객체 모델, 동적 모델, 기능 모델을 통해 **다양한 관점에서 분석이 가능하다.** | 동적 모델과 기능 모델의 연계가 여려울 수 있다.        |
| UML과 유사하여 **객체지향 설계 및 구현과 자연스럽게 연결된다.**        | 정적인 객체 모델에 비해 동적 모델이 상대적으로 덜 강조된다. |

***

## 객체 모델, 동적 모델, 기능 모델 비교

| 구분       | 개체 모델(Object Model) | 동적 모델(Dynamic Model)     | 기능 모델(Functional Model)   |
| -------- | ------------------- | ------------------------ | ------------------------- |
| 목적       | 시스템의 구조 정의          | 시스템의 상태 변화 정의            | 시스템의 기능 및 데이터 흐름 정의       |
| 주요 개념    | 객체, 클래스, 속성, 연산, 관계 | 상태, 이벤트, 상태 전이, 상태 다이어그램 | 프로세스, 데이터 흐름, 저장소, 외부 엔티티 |
| 사용 다이어그램 | 클래스 다이어그램           | 상태 다이어그램                 | 데이터 흐름도, 활동 다이어그램         |
| 예제       | 학생 - 강의 관계          | 학생의 수강 신청 과정             | 도서 대출 시스템의 데이터 흐름         |

* 객체 모델 = 시스템의 **구조**를 정의
* 동적 모델 = 시스템의 **상태 변화**를 정의
* 기능 모델 = 시스템의 **데이터 흐름 및 기능**을 정의


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/programming/software-design/architecture-and-patterns/rumbaughooaoverview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
