std::pointer_safety
Материал из cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Заголовочный файл <memory>
|
||
| enum class pointer_safety { relaxed, |
(начиная с C++11) | |
The scoped enumeration type pointer_safety lists the pointer safety modes supported by C++
[править] Перечисление констант
| pointer_safety::strict | Only safely-derived pointers (pointers to objects allocated with new or subobjects thereof) may be dereferenced or deallocated. Garbage collector may be active. |
| pointer_safety::preferred | All pointers are considered valid and may be dereferenced or deallocated. A reachability-based leak detector may be active |
| pointer_safety::relaxed | All pointers are considered valid and may be dereferenced or deallocated |
[править] См. также
| (C++11) |
возвращает текущую модель безопасности указателя Original: returns the current pointer safety model The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (функция) |