# Модификаторы Public, Private и Protected

В Java существуют следующие модификаторы доступа:

* private: члены класса доступны только внутри класса;
* default (package-private) (модификатор, по-умолчанию): члены класса видны внутри пакета (если класс будет так объявлен, он будет доступен только внутри пакета);
* protected: члены класса доступны внутри пакета и в наследниках;
* public: члены класса доступны всем;

Последовательность модификаторов по убыванию уровня закрытости: private, default, protected, public).

Во время наследования возможно изменение модификаторов доступа в сторону большей видимости.

Задание 1

```
Разделите ваши личные вещи на категории по модификаторам доступа для окружающих.
```


---

# 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://comaqa.gitbook.io/java-automation/oop-v-java/modifikatory-public-private-i-protected.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.
