这让我感到困惑,为什么std::shared_ptr<int> p1(new int(10));
会在一段时间内正常,而在std::shared_ptr<int> p2 = new int(10);
失败时?我认为两者应该以相同的方式构建。
问问题
67 次
这让我感到困惑,为什么std::shared_ptr<int> p1(new int(10));
会在一段时间内正常,而在std::shared_ptr<int> p2 = new int(10);
失败时?我认为两者应该以相同的方式构建。