当前位置: 首页 > news >正文

地产网站互动营销搜索引擎推广的三种方式

地产网站互动营销,搜索引擎推广的三种方式,只使用html做简单网站,做网站的教程视频async 在 C 中,async 关键字用于实现异步编程,它允许你定义异步操作,这些操作可以在后台执行,而不会阻塞当前线程。这是 C11 引入的特性,与 std::async 函数和 std::future 类一起使用。与thread函数模板的区别在于as…

async

在 C++ 中,async 关键字用于实现异步编程,它允许你定义异步操作,这些操作可以在后台执行,而不会阻塞当前线程。这是 C++11 引入的特性,与 std::async 函数和 std::future 类一起使用。与thread函数模板的区别在于async可以有返回值,thread无返回值。

简单入门

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;int mythread()
{cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() <<" end " << endl << endl;return 5;}int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;std::future<int> ret =  std::async(mythread);cout << ret.get() << endl; //堵塞获取值,注意:get函数只能调用一次,不能多次调用//注意:如果不写get,程序会等子线程退出后在自行退出cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

中级过度

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;class A
{
public:int mythread(int myint){cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}
};int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;A a;int num = 100;std::future<int> ret =  std::async(&A::mythread,&a,num);//传入可调用对象 &a == std::ref(a)都是引用传递 相当于传递了this指针。cout << ret.get() << endl; //堵塞获取值cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

高手使用

在 C++ 中,std::async 函数用于启动一个异步任务,并且可以与 std::launch 策略一起使用来控制任务的执行方式。std::launchstd::launch 枚举的一个值,它指示 std::async 以延迟(deferred)的方式执行给定的可调用对象。

当你使用 std::launch::deferred 时,std::async 将立即返回一个 std::future 对象,但不会立即执行传入的函数或函数对象。相反,函数的执行被延迟,直到你显式地请求结果,通常是通过调用 std::future::get 方法。这允许你在不阻塞当前线程的情况下启动异步操作。

意思就是说在调用get的函数,才开始执行程序,且是在主线程执行的,不调用的话函数不会运行。        

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;class A
{
public:int mythread(int myint){cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}
};int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;A a;int num = 100;std::future<int> ret =  std::async(std::launch::async|std::launch::deferred,&A::mythread,&a,num);//传入可调用对象 &a == std::ref(a)都是引用传递 相当于传递了this指针。cout << ret.get() << endl; //堵塞获取值cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

package_task

在 C++ 中,std::packaged_task 是一个类模板,它用于包装任何可调用对象(如函数、lambda 表达式、函数对象等),以便它可以被异步调用。它的返回值或抛出的异常被存储在一个共享状态中,可以通过 std::future 对象访问。std::packaged_taskstd::future 结合使用时,可以轻松管理异步操作。

以下是如何使用 std::packaged_task 的基本步骤:

  1. 创建 std::packaged_task 对象:你可以创建一个 std::packaged_task 对象,并将一个可调用对象(如函数或 lambda 表达式)传递给它。

  2. 获取 std::future 对象:通过调用 get_future() 方法,你可以获取一个 std::future 对象,该对象可以用来获取异步操作的结果。

  3. 启动异步任务:你可以通过在新的线程中调用 std::packaged_task 对象来启动异步任务。

  4. 等待结果:使用 std::future 对象的 get() 方法来等待异步操作完成并获取结果。

简单入门

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;int mythread(int myint)
{cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;//std::packaged_task类模板std::packaged_task<int(int)>mypt(mythread); //把函数mytherad通过package_task包装std::thread t1(std::ref(mypt),120);t1.join(); //这里的join不可以省略
//执行完毕future<int>ret = mypt.get_future(); //获取到future对象。cout << "fun finish ret = " << ret.get() << endl;cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

 中级过度

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;int mythread(int myint)
{cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;//std::packaged_task类模板std::packaged_task<int(int)>mypt([](int num) { cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << num << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}); //把函数mytherad通过package_task包装mypt(300); //包装对象可以直接调用。,在主线程执行,未创建线程//执行完毕future<int>ret = mypt.get_future(); //获取到future对象。cout << "fun finish ret = " << ret.get() << endl;cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

 高手使用

// ConsoleApplication10.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <thread>
#include <mutex>
#include <cstdint>
#include <future>#include <list>
using  namespace std;class A
{
public:int mythread(int myint){cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}
};int mythread(int myint)
{cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << myint << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}vector<std::packaged_task<int(int)> > mystatsks;int main()
{cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;//std::packaged_task类模板std::packaged_task<int(int)>mypt([](int num) { cout << "func " << "  threadid = " << this_thread::get_id() << " start " << endl << endl;cout << "myint = " << num << endl;std::chrono::milliseconds dura(3000);std::this_thread::sleep_for(dura);cout << "func " << "  threadid = " << this_thread::get_id() << " end " << endl << endl;return 5;}); //把函数mytherad通过package_task包装cout << "mypt.valid = " << mypt.valid() << endl;//mystatsks.push_back( (mypt) ); //默认是调用拷贝构造,此处内部被删除了mystatsks.push_back(std::move(mypt)); //移动到容器中。 mypt就无效了cout << "mypt.valid = " << mypt.valid() << endl;std::packaged_task<int(int)>mypt2;auto it = mystatsks.begin(); //获取第一个元素mypt2 = std::move(*it); //移动到mypt2cout <<"mystsks.size() = "<< mystatsks.size() << endl;mystatsks.erase(it);mypt2(123);std::future<int>ret =mypt2.get_future() ;cout << "ret = " << ret.get();cout << "=========================================== " << " threadid = " << this_thread::get_id() << endl << endl;return 0;
}

promise

在 C++11 及以后的版本中,std::promise 是一个模板类,它提供了一种方式来存储值或异常,并且可以在稍后某个时刻通过 std::future 对象访问这些值或异常。std::promise 通常与 std::future 一起使用,以实现线程间的数据传递或同步。

以下是 std::promise 的一些关键特点和用法:

  1. 存储值std::promise 可以存储一个值,这个值可以是任何类型,包括自定义类型。

  2. 存储异常:如果 std::promise 存储了一个异常,那么当 std::future 对象尝试获取值时,这个异常会被抛出。

  3. 设置值:一旦 std::promise 被设置(通过 set_valueset_value_at_thread 方法),它就不能再次被设置。如果尝试再次设置,将抛出 std::future_error 异常。

  4. 获取值std::future 对象使用 get 方法从关联的 std::promise 获取值。如果 std::promise 存储了异常,get 将抛出这个异常。

  5. 等待std::future 对象可以使用 waitwait_for 方法等待 std::promise 设置值。

  6. 移动语义std::promise 对象可以被移动,但不能被复制。

其他线程使用可以参数我主页中的 C语言:高级并发操作(线程)文章。

http://www.dinnco.com/news/66194.html

相关文章:

  • 免费注册建网站短链接生成器
  • 北京网站建设百度排名灰色词秒收录代发
  • 做网站的软件dw下载seo l
  • 做p2p网站 预算多少网站技术解决方案
  • o2o平台的基本信息好搜网惠州seo
  • 自应式网站而的跟地seo排名点击软件
  • 网站排名优化手机抖音关键词排名优化
  • 网站一直不收录推广普通话图片
  • 网站建设哪一家好百度统计官网
  • 上海建设工程检测网官网厦门seo培训学校
  • 深圳网站建设网络推广肇庆网站搜索排名
  • 惠州企业自助建站爱站网关键词长尾挖掘
  • 胶州做网站网站seo诊断分析
  • 这是我自己做的网站个人怎么建立网站
  • 北京建站模板公司武汉seo群
  • 做网站用百度浏览器惠州seo报价
  • 阿里云服务器怎么做网站免费网站流量统计工具
  • 深圳市网站建设制作设计平台北京网站优化专家
  • 做计划的网站发帖推广哪个平台好
  • dw做网站谷歌seo快速排名优化方法
  • 哪个网站可以做抑郁症测试题如何给公司网站做推广
  • 网站建设流程效果软文广告经典案例300大全
  • 网站品牌建设建议2023年7月最新疫情
  • 建设短视频网站域名查询ip138
  • 安徽网站建设公司品牌营销与推广
  • 营销型品牌网站建设aso优化工具
  • 保定做网站外链吧官网
  • 重新安wordpress网站河南seo排名
  • 创建网页的代码优化官网咨询
  • 公司网站建设备选方案评价标准成都优化网站哪家公司好