Bootstrap

C++模板函数和lambda表达式的使用

#include <iostream>

using namespace std;

class Tmp1 {
   
public:
    int foo() {
    
        cout << "Tmp1.foo" << endl;
        return ret;
    }

    string walk() {
   
        cout << "walk" << endl;
        return "cout walk";
    }

    int ret = 1
;