3

考虑以下内容:我有一个带有构造函数的类 A,它接受一个大小为 3 的整数数组作为参数。

现在我想为 A 构造一个 shared_ptr。如果我使用

shared_ptr<>(new A (parameter))

一切都很好。

但是如果我尝试使用

make_shared<A>(parameter)

编译器给出错误信息。仅当在堆栈上声明参数数组并使用变量作为数组大小(int 参数 [n])时才会发生这种情况

使用静态数组(int 参数 [3])或使用 new 在堆上分配数组时,问题就消失了。

我的意思是,这不是严重的问题,因为有提到的解决方法。不过,我会很感激任何解释为什么会发生......

顺便说一句,我使用的是 g++ 4.8.2。

这是一个最小的示例和错误日志:

#include <iostream>
#include <memory>

using namespace std;

// some simple class
class A
{
public:
    A () {};
    A (int var[3]) {}; // some non-default constructor with an array as argument
    void foo (){cout << "foo()" << endl;};
};

int main()
{
    // make a shared_ptr to A
    shared_ptr<A> ptr;

    // allocate an array var1 of size nVars=3 on the stack
    int nVars = 3;
    int var1[nVars];
    ptr = shared_ptr<A> (new A(var1)); // without make_shared, the c'tor is recognized
    ptr->foo();
    ptr = make_shared<A> (var1); // <- error at compile time!
    ptr->foo();

    // same with static array var2 of size 3
    int var2[3];
    ptr = make_shared<A> (var2); // <- no compilation error
    ptr->foo();

    // same with dynamic array var3 of size 3
    int* var3 = new int[nVars];
    ptr = make_shared<A> (var3); // <- no compilation error
    ptr->foo();

    return 0;
}

构建日志:

g++ -std=c++0x -D__GXX_EXPERIMENTAL_CXX0X__ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "../main.cpp"
../main.cpp: In function ‘int main()’:
../main.cpp:25:28: error: no matching function for call to ‘make_shared(int [(((sizetype)(((ssizetype)nVars) + -1)) + 1)])’
  ptr = make_shared<A> (var1); // <- error at compile time!
                            ^
../main.cpp:25:28: note: candidate is:
In file included from /usr/include/c++/4.8/memory:82:0,
                 from ../main.cpp:2:
/usr/include/c++/4.8/bits/shared_ptr.h:610:5: note: template<class _Tp, class ... _Args> std::shared_ptr<_Tp1> std::make_shared(_Args&& ...)
     make_shared(_Args&&... __args)
     ^
/usr/include/c++/4.8/bits/shared_ptr.h:610:5: note:   template argument deduction/substitution failed:
../main.cpp:25:28: note:   variable-sized array type ‘int (&)[(((sizetype)(((ssizetype)nVars) + -1)) + 1)]’ is not a valid template argument
  ptr = make_shared<A> (var1); // <- error at compile time!
                            ^

干杯并提前感谢您的回答!

朱里

4

0 回答 0