# Деструктор

Не смотря на то что Vala управляет памятью за вас, необходимо добавить свой собственный деконструктор, если вы желаете управлять памятью при помощи указателей (об этом позже), или если вам нужно освободить ресурсы. Синтаксис как и в C#/C++:

```csharp
class Demo : Object {
    ~Demo() {
        stdout.printf("in destructor");
    }
}
```

Так как управление памятью в Vala основано на подсчете ссылок, а не на отслеживающем сборщике мусора, деструкторы вызываются детерминированно и позволяют использовать паттерн RAII для управления ресурсами(закрытие потоков, соединений с базой данных, ...).


---

# Agent Instructions: 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:

```
GET https://vala.gitbook.io/vala/untitled/oop/destructor.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
