EF
Size: a a a
EF
EF
p
EF
p
EP
EF
__\w*[^_]{2}
EF
__\w*[^_]{2}
class Foo:
def __init__(self):
self.__kek = 42
class Bar(Foo):
def __init__(self):
super().__init__()
print(self.__kek) # can't access
Foo().__kek # can't access
EF
public
, договорённость на protected
и private
EF
Queue(const T&) = delete;
EP
EP
Queue(T&&) = delete;
EF
Queue(T&&) = delete;
EP
EP
EF
EF
Queue(Queue&&) noexcept = default;
EF