将方法放入C ++中的缓冲区

时间:2016-12-09 13:39:29

标签: c++ concurrency buffer producer-consumer

我已创建此方法将一些数据放入缓冲区:

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)'

1 个答案:

答案 0 :(得分:2)

  

错误:没有匹配函数来调用locked_buffer<long int>::put(std::vector<std::vector<unsigned char>>&, bool)

告诉你需要知道的一切:

  1. 您的locked_buffer对象的模板类型为:long int
  2. 您的1 st 参数类型为:vector<vector<unsigned char>>
  3. 现在我们知道这两种类型必须与你的函数定义相同:

    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