promise-cpp是一种 C++ promise/A+ 库
#include <iostream> #include <future> #include <string> #include <sstream> #include <stdexcept> #include <functional> #include <locale> #include <codecvt> // #ifndef PROMISE_HEADONLY #define PROMISE_HEADONLY #endif #include "promise-cpp/promise.hpp" //
------------------------------
//-------------------------------------------------------------------------------------------- static promise::Promise testPromise() { return promise::newPromise([&](promise::Defer &defer) { // defer.resolve(9567, 'A'); // }) .then( // [&](int n, char ch) // function on_resolved { // printf("%d %c\n", n, ch); // will print 9567 here // }, // []() // function on_rejected { // printf("promise rejected\n"); // will not run to here in this code }); }
------------------------------
void PromiseCommand::OnClick() { // testPromise(); }标签:defer,01,HEADONLY,--,ch,promise,cpp,include From: https://www.cnblogs.com/gispathfinder/p/17057368.html