13

作为这篇文章的后续,我想知道它的实现如何make_unique分配函数临时缓冲区数组,例如以下代码。

f()
{
  auto buf = new int[n]; // temporary buffer
  // use buf ...
  delete [] buf;
}

这可以用一些调用来代替,make_unique然后会使用 delete 的[]-version 吗?

4

2 回答 2

19

这是另一个解决方案(除了迈克的):

#include <type_traits>
#include <utility>
#include <memory>

template <class T, class ...Args>
typename std::enable_if
<
    !std::is_array<T>::value,
    std::unique_ptr<T>
>::type
make_unique(Args&& ...args)
{
    return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}

template <class T>
typename std::enable_if
<
    std::is_array<T>::value,
    std::unique_ptr<T>
>::type
make_unique(std::size_t n)
{
    typedef typename std::remove_extent<T>::type RT;
    return std::unique_ptr<T>(new RT[n]);
}

int main()
{
    auto p1 = make_unique<int>(3);
    auto p2 = make_unique<int[]>(3);
}

笔记:

  1. new T[n] 应该只是默认构造 n 个 T。

所以 make_unique(n) 应该只是默认构造 n 个 T。

  1. 此类问题导致 make_unique 未在 C++11 中提出。另一个问题是:我们是否处理自定义删除器?

这些不是无法回答的问题。但它们是尚未完全回答的问题。

于 2012-04-14T01:14:03.337 回答
4

我让它使用以下代码:

#include <memory>
#include <utility>

namespace Aux {
    template<typename Ty>
    struct MakeUnique {
        template<typename ...Args>
        static std::unique_ptr<Ty> make(Args &&...args) {
            return std::unique_ptr<Ty>(new Ty(std::forward<Args>(args)...));
        }
    };

    template<typename Ty>
    struct MakeUnique<Ty []> {
        template<typename ...Args>
        static std::unique_ptr<Ty []> make(Args &&...args) {
            return std::unique_ptr<Ty []>(new Ty[sizeof...(args)]{std::forward<Args>(args)...});
        }
    };
}

template<typename Ty, typename ...Args>
std::unique_ptr<Ty> makeUnique(Args &&...args) {
    return Aux::MakeUnique<Ty>::make(std::forward<Args>(args)...);
}
于 2012-04-14T01:03:54.827 回答