19 lines
483 B
Markdown
19 lines
483 B
Markdown
---
|
|
title: Resource Acquisition Is Initialization
|
|
category: Idiom
|
|
language: en
|
|
tags:
|
|
- Data access
|
|
---
|
|
|
|
## Intent
|
|
Resource Acquisition Is Initialization pattern can be used to implement exception safe resource management.
|
|
|
|
## Class diagram
|
|

|
|
|
|
## Applicability
|
|
Use the Resource Acquisition Is Initialization pattern when
|
|
|
|
* You have resources that must be closed in every condition
|