码迷,mamicode.com
首页 > 其他好文 > 详细

void operator()()的功能

时间:2019-08-04 10:18:58      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:线程   学习   private   eth   this   tor   join   second   名称   

在学习多线程的时候看到这样的一段代码

#include <iostream>
#include <thread>

class Counter {
public:
  Counter(int value) : value_(value) {
  }

  void operator()() {
    while (value_ > 0) {
      std::cout << value_ << " ";
      --value_;
      std::this_thread::sleep_for(std::chrono::seconds(1));
    }
    std::cout << std::endl;
  }

private:
  int value_;
};

int main() {
  std::thread t1(Counter(3));
  t1.join();

  std::thread t2(Counter(3));
  t2.detach();

  // 等待几秒,不然 t2 根本没机会执行。
  std::this_thread::sleep_for(std::chrono::seconds(4));
  
  return 0;
}

对 void operator()()的功能表示困惑

// 查阅了一些资料,这个是简易的说明代码
class background_task
{
public:
    void operator()() const
    {
        do_something();
        do_something_else();
    }
};
background_task f;
std::thread my_thread(f);

在这里,为什么我们需要operator()()?第一个和第二个()的意思是什么?其实我知道正常的运算符的操作,但是这个运算符很混乱.
最佳答案
第一个()是运算符的名称 – 它是在对象上使用()时调用的运算符. 第二个()是用于参数的,其中没有.
以下是您如何使用它的示例:

background_task task;
task();  // calls background_task::operator()

有参数的演示:

#include <iostream>

class Test {
public:
    void operator()(int a, int b) {
        std::cout << a + b << std::endl;
    }
};

int main() {
    Test t;
    t(3,5);
    return 0;
}

// 输出结果
// 8

void operator()()的功能

标签:线程   学习   private   eth   this   tor   join   second   名称   

原文地址:https://www.cnblogs.com/__tudou__/p/11297325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!