CPlusPlusThings/learn_class/modern_C++_30/functionLambda/autoLambda.cpp
Light-City 1dca8dee82 update
2020-03-03 11:13:16 +08:00

65 lines
1.6 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Created by light on 20-1-11.
//
#include <chrono>
#include <iostream>
#include <sstream>
#include <thread>
using namespace std;
int get_count() {
static int count = 0;
return ++count;
}
class task {
public:
task(int data) : data_(data) {}
/**
* this 标明按引用捕获外围对象(针对 lambda 表达式定义出现在一个非静态类成员内的情况);
* 注意默认捕获符 = 和 & 号可以自动捕获 this并且在 C++20 之前,在 = 后写 this 会导致出错)
* 本例子两次都按照第二次输出(this_thread::sleep_for(100ms);
* this 标明按引用捕获外围对象
*
*
* *this 标明按值捕获外围对象(针对 lambda 表达式定义出现在一个非静态类成员内的情况C++17 新增语法)
* 本例子正常输出
*/
auto lazy_launch() {
return
[*this, count = get_count()]()
mutable {
ostringstream oss;
oss << "Done work " << data_
<< " (No. " << count
<< ") in thread "
<< this_thread::get_id()
<< '\n';
msg_ = oss.str();
calculate();
};
}
void calculate() {
this_thread::sleep_for(100ms);
cout << msg_;
}
private:
int data_;
string msg_;
};
int main() {
auto t = task{37};
thread t1{t.lazy_launch()};
thread t2{t.lazy_launch()};
t1.join();
t2.join();
}