我已创建此方法将一些数据放入缓冲区:
template <typename T>
void locked_buffer<T>::put(const T & x, bool last) noexcept
{
using namespace std;
unique_lock<mutex> l{mut_};
not_full_.wait(l, [this] { return !do_full(); });
buf_[next_write_] = item{last,x};
next_write_ = next_position(next_write_);
l.unlock();
not_empty_.notify_one();
}
但是,试图放入一个函数返回的数据:
int size_b;
locked_buffer<long buf1{size_b}>;
buf1.put(image, true); //image is the return of the function
我遇到了布尔变量bool last
的问题,因为我有编译错误。
感谢。
编辑: 我获得的错误如下:
error: no matching function for call to 'locked_buffer<long int>::put(std::vector<std::vector<unsigned char>>&, bool)'
答案 0 :(得分:2)
错误:没有匹配函数来调用
locked_buffer<long int>::put(std::vector<std::vector<unsigned char>>&, bool)
告诉你需要知道的一切:
locked_buffer
对象的模板类型为:long int
vector<vector<unsigned char>>
现在我们知道这两种类型必须与你的函数定义相同:
template <typename T>
void locked_buffer<T>::put(const T & x, bool last) noexcept
编译器的错误是正确的。您需要使用匹配的locked_buffer
对象或创建新函数:
template <typename T, typename R>
void locked_buffer<T>::put(const R& x, bool last) noexcept