有没有办法定义一个非动态构造函数来限制默认构造函数的范围让我做
struct foo {
int *bar;
};
static __thread foo myfoo[10] = {nullptr};
?
即,我想做
class baz {
public:
baz() = default;
constexpr baz(decltype(nullptr)) : qux(nullptr) { }
private:
int *qux;
};
static __thread baz mybaz[10] = {nullptr};
让它工作。
目前,icpc告诉我
main.cpp(9): error: thread-local variable cannot be dynamically initialized
static __thread baz mybaz[10] = {nullptr};
^