std::shared_ptr<void> vps = std::make_shared<int>(); // OK auto ips = std::static_pointer_cast<int>(vps); // OK with typecast.
確定! 回上一頁