auto pw = std::make_unique<Widget>(); // create Widget; see // Item 21 for info on // std::make_unique ... // configure *pw auto func = [pw = std::move(pw)] ...
確定! 回上一頁