使用 unique_ptr 的 C++ char 数组

标签 c++ c++11 unique-ptr

首先,我知道这不是最好的方法,我只是在研究应该如何完成。我创建了一个名为 bord 的类,它包含一个成员

        std::unique_ptr<std::unique_ptr<char>[] > char_bord;

这应该是正确的语法,然后我尝试在构造函数中初始化它:

bord::bord():char_bord(new std::unique_ptr<char>[10])
{
    //char_bord=new std::unique_ptr<char>[10]; //This did not seem to work aswell.
    for(int i=0;i<10;i++)
      char_bord[i]=new std::unique_ptr<char>[](new char[10]); 
    return;
}

这导致了以下一堆错误,我没有设法破译。

jelmer@jelmer-N56JN:~/Git/Board/lib$ g++ -std=c++0x bord.c
In file included from bord.c:1:0:
bord.h:20:1: error: new types may not be defined in a return type
 class bord
 ^
bord.h:20:1: note: (perhaps a semicolon is missing after the definition of ‘bord’)
bord.c:3:12: error: return type specification for constructor invalid
 bord::bord():char_bord(new std::unique_ptr<char>[10])
            ^
bord.c: In constructor ‘bord::bord()’:
bord.c:7:46: error: expected primary-expression before ‘]’ token
       char_bord[i]=new std::unique_ptr<char>[](new char[10]); 
                                              ^
bord.c:7:60: error: parenthesized initializer in array new [-fpermissive]
       char_bord[i]=new std::unique_ptr<char>[](new char[10]); 
                                                            ^
bord.c:7:19: error: no match for ‘operator=’ (operand types are ‘std::unique_ptr<char>’ and ‘std::unique_ptr<char>*’)
       char_bord[i]=new std::unique_ptr<char>[](new char[10]); 
                   ^
bord.c:7:19: note: candidates are:
In file included from /usr/include/c++/4.9/memory:81:0,
                 from bord.h:19,
                 from bord.c:1:
/usr/include/c++/4.9/bits/unique_ptr.h:249:7: note: std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Tp, _Dp>&&) [with _Tp = char; _Dp = std::default_delete<char>]
       operator=(unique_ptr&& __u) noexcept
       ^
/usr/include/c++/4.9/bits/unique_ptr.h:249:7: note:   no known conversion for argument 1 from ‘std::unique_ptr<char>*’ to ‘std::unique_ptr<char>&&’
/usr/include/c++/4.9/bits/unique_ptr.h:269:2: note: template<class _Up, class _Ep> typename std::enable_if<std::__and_<std::is_convertible<typename std::unique_ptr<_Up, _Ep>::pointer, typename std::unique_ptr<_Tp, _Dp>::_Pointer::type>, std::__not_<std::is_array<_Up> > >::value, std::unique_ptr<_Tp, _Dp>&>::type std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Up, _Ep>&&) [with _Up = _Up; _Ep = _Ep; _Tp = char; _Dp = std::default_delete<char>]
  operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
  ^
/usr/include/c++/4.9/bits/unique_ptr.h:269:2: note:   template argument deduction/substitution failed:
bord.c:7:19: note:   mismatched types ‘std::unique_ptr<_Tp, _Dp>’ and ‘std::unique_ptr<char>*’
       char_bord[i]=new std::unique_ptr<char>[](new char[10]); 
                   ^
In file included from /usr/include/c++/4.9/memory:81:0,
                 from bord.h:19,
                 from bord.c:1:
/usr/include/c++/4.9/bits/unique_ptr.h:278:7: note: std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::nullptr_t) [with _Tp = char; _Dp = std::default_delete<char>; std::nullptr_t = std::nullptr_t]
       operator=(nullptr_t) noexcept
       ^
/usr/include/c++/4.9/bits/unique_ptr.h:278:7: note:   no known conversion for argument 1 from ‘std::unique_ptr<char>*’ to ‘std::nullptr_t’

假设我做错了什么,我做错了什么。

最佳答案

这里有一些代码可以演示我认为你想要的东西:

#include <iostream>
#include <algorithm>
#include <iterator>
#include <memory>

using namespace std;

using array_ptr_type = std::unique_ptr<char[]>;
using array_of_arrays_type = std::unique_ptr<array_ptr_type[]>;

auto main() -> int
{
    auto x = array_ptr_type(new char[10]);
    auto y = array_ptr_type(new char[10]);
    for (int i = 0 ; i < 10 ; ++i)
    {
        x[i] = char('0' + i);
        y[i] = char('0' + 9 - i);
    }

    auto pxy = array_of_arrays_type(new array_ptr_type[2]);
    pxy[0] = move(x);
    pxy[1] = move(y);

    for (int i = 0 ; i < 2 ; ++i) {
        copy(&pxy[i][0], &pxy[i][10], ostream_iterator<char>(cout, ", "));
        cout << endl;
    }
    return 0;
}

预期输出:

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 
9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 

当然如您所知,这些都不推荐 - vector<vector<char>>会更干净,更易于维护。

关于使用 unique_ptr 的 C++ char 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31135178/

相关文章:

c++ - 不完整的类型错误

c++ - 为什么我的派生类 (Stock) 会报错?

c++ - C++中的单例多线程代码

c++ - 调试 C++ 程序时出现奇怪的 gdb 消息

c++11 - make_unique 的异常感知 malloc 版本

C 预处理器的 C++ 实现

c++ - 模板参数中未命名的类/类型名

c++ - O(N) 算法比 O(N logN) 算法慢

c++ - 如何在结构上使用 std::unique_ptr?

c++ - 是否可以重新分配 std::unique_ptr 以使其旧值在构造新值之前被销毁?