gpt4 book ai didi

c++ - 错误 : implicitly deleted because the default definition would be ill-formed (vector of structs)

转载 作者:IT老高 更新时间:2023-10-28 23:20:36 47 4
gpt4 key购买 nike

我无法编译我的 C++ 程序。非常感谢有关此错误的一些帮助。在头文件中,我有这个:

struct workerT{
workerT() : status(true), threadSem(0){}
bool status;
std::function<void(void)> func;
semaphore threadSem;
};

std::vector<workerT> workers;

在我的 .cc 文件中,我尝试像这样初始化该 vector :

fill(workers.begin(), workers.end(), workerT());

这失败并出现以下错误:错误:'TP::workerT& TP::workerT::operator=(const TP::workerT&)' 被隐式删除,因为默认定义格式错误:它指向 semaphore.h 文件。 Semaphore.h 是这样定义的:

 public:
semaphore(int value = 0);
....

private:
int value;
....
semaphore(const semaphore& orig) = delete;
const semaphore& operator=(const semaphore& rhs) const = delete;

如果我删除“填充”行,程序就会编译,但我真的需要它,因为我想初始化 vector 。当我制作一个虚拟结构并尝试将 push_back 放入 vector 时,我收到了相同的错误消息。

更新:感谢@DyP!我仍然需要帮助编译。将“填充”行替换为:

std::generate(workers.begin(), workers.end(), free_func);

将这个添加到我的标题中:

workerT free_func(){
return {};
}

得到这些错误:

thread-pool.cc:在构造函数“ThreadPool::ThreadPool(size_t)”中:thread-pool.cc:33:58:错误:“ThreadPool::workerT (ThreadPool::)()”类型的参数与“ThreadPool::workerT (ThreadPool::*)()”不匹配在/usr/include/c++/4.6/algorithm:63:0 包含的文件中, 来自 thread-pool.cc:15:/usr/include/c++/4.6/bits/STL_algo.h: 在函数'void std::generate(_FIter, _FIter, _Generator) [with _FIter = __gnu_cxx::__normal_iterator >, _Generator = ThreadPool::workerT (ThreadPool::*)()]':thread-pool.cc:33:58:从这里实例化/usr/include/c++/4.6/bits/STL_algo.h:5013:2: error: must use '.' or '->' to call pointer-to-member function in '__gen ( ...)',例如'(... ->* __gen) (...)'make: * [thread-pool.o] 错误 1

更新——在我的 .cc 文件中:

 using namespace std;

static workerT free_func(){
return {};
}

ThreadPool(...args...){
std::generate(workers.begin(), workers.end(), free_func);
}

错误:

thread-pool.cc:19:10: error: ‘workerT’ does not name a type
thread-pool.cc: In constructor ‘ThreadPool::ThreadPool(size_t)’:
thread-pool.cc:39:49: error: ‘free_func’ was not declared in this scope
make: *** [thread-pool.o] Error 1

再次更新:

 static ThreadPool::workerT free_func(){
return {};
}

ThreadPool(...args...){
std::generate(workers.begin(), workers.end(), free_func);
}

在thread-pool.h中:

 struct workerT{
workerT() : status(true), threadSem(0){}
bool status;
std::function<void(void)> func;
semaphore threadSem;
};

最佳答案

作为 0x499602d2正确指出,fill需要从第三个参数复制分配。由于您的类型隐式不可复制,因此您不能使用 fill .

但是,您可以使用 generate填充你的 vector :

#include <vector>
#include <algorithm>

struct noncopyable
{
noncopyable() = default;

// make it noncopyable
noncopyable(noncopyable const&) = delete;
noncopyable& operator=(noncopyable const&) = delete;

// make it movable (thanks, gx_)
noncopyable(noncopyable&&) = default;
noncopyable& operator=(noncopyable&&) = default;
};

int main()
{
std::vector<noncopyable> vec(10);
std::generate(begin(vec), end(vec), []()->noncopyable{return {};});
}

注意:这仅适用于 noncopyable有一个未删除的、可访问的移动构造函数。但是,如果它没有有这样的 ctor,您将无法使用大部分 vector ( resize 需要 MoveInsertable ,这需要复制或移动 ctor) .


对于 g++4.8,使用 generate ,你需要一个免费的功能。我认为这是一个错误。

#include <vector>
#include <algorithm>

struct noncopyable
{
noncopyable() = default;
noncopyable(noncopyable const&) = delete;
};

noncopyable free_func()
{ return {}; }

int main()
{
std::vector<noncopyable> vec;
std::generate(begin(vec), end(vec), free_func);
}

还有一个问题是你是否可以像那样初始化你的 vector 。我会说不。 fillgenerate不要构造元素,而是覆盖(分配)。也就是说,您需要先拥有一个包含多个元素的 vector ,然后才能使用它们。

初始化具有 N 个默认构造元素的 vector 的最简单版本是使用构造函数:

std::vector<noncopyable> vec(10);

创建一个 vector有 10 个默认构造的元素。唯一的要求是 noncopyable是 DefaultConstructible (本质上,它必须有一个默认构造函数)。


如果您的类型是不可复制且不可移动的,则不能直接使用(或作为数据成员)将其存储在 vector 中(*)。上课C可移动的,它包含一个不可复制的、不可移动的类型 X ,您需要存储X作为指针:

(*) 嗯,你可以,但是你不能调整 vector 的大小,你不能插入等等。

struct nocopies_nomoves
{
nocopies_nomoves() = default;

nocopies_nomoves(nocopies_nomoves const&) = delete;
nocopies_nomoves& operator=(nocopies_nomoves const&) = delete;

// not required to be explicitly deleted:
nocopies_nomoves(nocopies_nomoves&&) = delete;
nocopies_nomoves& operator=(nocopies_nomoves&&) = delete;
};

#include <utility>
#include <memory>
class C
{
public:
C() : ptr( new nocopies_nomoves() ) {} // make_unique in C++1y

// I don't think you need to explicitly define those as defaulted;
// at least not if you don't declare ANY of the copy/move ctors, assignment ops
// and dtor
C(C&& rhs) = default;
C& operator=(C&& rhs) = default;
~C() = default;

// not required to be explicitly deleted:
C(C const&) = delete;
C& operator=(C const&) = delete;
private:
std::unique_ptr<nocopies_nomoves> ptr;
};

现在您可以创建 vector<C>并使用它(例如 resizeinsert ,...)

#include <vector>
#include <algorithm>

static C generate_C()
{
return {};
}

int main()
{
std::vector<C> vec(10);
// note: futile statement below; overwrites the 10 default-constructed
// elements
std::generate(begin(vec), end(vec), generate_C);
}

关于c++ - 错误 : implicitly deleted because the default definition would be ill-formed (vector of structs),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19883092/

47 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com