lst-1017-book.cpp
// https://godbolt.org/z/1boeTMMvf
MxStack<int> mxs{};
// …
// mehr Code
// …
if( ! mxs.isEmpty()) { // (ERR) nicht sicher
const auto value = mxs.top(); // (ERR) nicht sicher
mxs.pop(); // (ERR) nicht sicher
// …
// mehr Code
// …
}