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

广东网站制作平台seo搜索引擎优化试题及答案

广东网站制作平台,seo搜索引擎优化试题及答案,福州做网站公司排名,蓝色门户网站这两个功能是C standard library中的Standard template library中的一部分。容易混淆,我们来看下它们的区别。 exchange: 这个函数是一个返回原先值的set函数。 std::exchange is a setter returning the old value. int z std::exchange(x, y); Af…

这两个功能是C++ standard library中的Standard template library中的一部分。容易混淆,我们来看下它们的区别。

exchange:

这个函数是一个返回原先值的set函数。

std::exchange is a setter returning the old value. 

int z = std::exchange(x, y);

After this line of code executes:

* x is assigned the value of y,

* z is assigned the value that x had initially.

使用伪代码(pseudocode)表示的话,exchange的意思就是:

z <- x <- y

x(第一个参数)的值作为返回值赋值给z;y(第二个参数)的值复制给X。

常用语法定义如下:

template< class T, class U = T >

T exchange( T& obj, U&& new_value );

将第二个参数的值赋给第一个值,并返回第一个参数的旧值。

#include <utility>

int main()

{

  int x = 2;

  auto y = std::exchange(x, 4);

  // y == 2;

  // x == 4;

}

swap:

伪代码表示含义:

A -> B

B <- A

交换两个变量的值。

Semantic and syntax,语义和语法:

最通常的使用语法如下:

template< class T >

void swap( T& a, T& b );

对模板T类型的要求:

T must meet the requirements of CopyConstructible and CopyAssignable (until C++11),MoveConstructible and MoveAssignable (since C++11)

注意swap是不返回值的。这里的参数是对象的引用。

#include <utility>

int main()

{

  int i = 3;

  int j = 4;

  std::swap(i, j);

  // i == 4

  // j == 3

}

$ g++ -o test std.c -std=c++14

swap需要他的参数都不是常量引用,要能转换为一个non-const reference,所以不能使用swap(i, 4),编译会不通过。

使用exchange的场景举例:The “swap-and-iterate” pattern 

这种模式可以使用exchange来做。在很多event-driven的架构中会使用。一般会有一个vector的事件需要分发(dispatch), 或者等同的意思,需要调用相应的callback。 但我们希望事件处理程序能够产生自己的事件,以便进行延迟分派。(But we want event handlers to be able to produce events of their own for deferred dispatch.)

代码如下:

class Dispatcher {

    // We hold some vector of callables that represents

    // events to dispatch or actions to take

    using Callback = /* some callable */;

    std::vector<Callback> callbacks_;

    // Anyone can register an event to be dispatched later

    void defer_event(const Callback& cb) {

        callbacks_.push_back(cb);

    }

    // All events are dispatched when we call process

    void process() {

        std::vector<Callback> tmp{};

        using std::swap; // the "std::swap" two-step

        swap(tmp, callbacks_);

        for (const auto& callback : tmp) {

            std::invoke(callback);

        }

    }

};

这就是 "swap-and-iterate "模式。这个回调类内部调用 defer_event 并因此产生自己的事件是安全的:我们使用 tmp,这样调用 defer_event 就不会使循环中的迭代器失效。

但是,我们在这里做的工作比必要的要多一些,而且还犯了 "ITM antipattern(initialize-then-modify)"的错误。首先,我们构造了一个空vector (tmp),然后,通过 swap,我们有 3 个move assignments,然后才开始迭代。

使用std::exchange进行重构可以解决这些问题:

class Dispatcher {

    // ...

    // All events are dispatched when we call process

    void process() {

        for (const auto& callback : std::exchange(callbacks_, {}) {

            std::invoke(callback);

        }

    }

};

现在,我们不必再声明一个临时量。在 std::exchange 中,我们只有一个移动构造和一个移动赋值,比 swap 节省了一次移动。我们不需要理解 "std::swap 两步法"所涉及的 ADL。我们不需要 tmp,只需要一种表达empty vector的方法,在这里就是 {}。编译器非常善于优化对 std::exchange 的调用,所以我们当然能得到我们通常期望的拷贝消除(copy elision)。因此,代码整体上更加简洁、快速(concise, faster),并提供了与之前相同的安全性。

从这个角度看exchange就是用来调整一个变量的值来使用的。就像我们一直在用的i++, 后缀操作符,在使用完i的值后,再对i的值进行修改。

参考:

1,C++ Weekly: Ask C++ Weekly: `std::exchange` vs `std::swap`

https://youtu.be/GEbPRS81py4?si=9tvUhpGjKstzCog7

2,cppreference.com

std::exchange - cppreference.com

std::swap - cppreference.com

3,std::exchange是干什么的

What std::exchange does, and how to remember it - Fluent C++ (fluentcpp.com)

4,std::exhange的好处

std::exchange Patterns: Fast, Safe, Expressive, and Probably Underused - Fluent C++ (fluentcpp.com)

http://www.ds6.com.cn/news/68395.html

相关文章:

  • 广东做网站公司有哪些百度竞价推广常用到的工具
  • 电子商务平台中搜索词拆解包括seo排名诊断
  • 北京做网站找哪家好公司建网站需要多少钱
  • 北京网站建设哪家好怎么找到当地的微信推广
  • 苹果电脑可以做网站吗软文推广营销平台
  • 女生做网站编辑好吗网站长尾关键词排名软件
  • 装修设计费收费标准2022页面seo优化
  • 学校文化建设聚奇网站我想在百度上发布广告怎么发
  • 网站的标志可以修改吗网站如何推广营销
  • 网站 psd南宁百度seo公司
  • 培训网站建设方案模板下载宁波受欢迎全网seo优化
  • 商城网站设计教程百度网页翻译
  • html怎么做商品页面苏州关键词seo排名
  • 网站ftp的所有权归谁上海全网营销推广
  • 怎么做律所的官方网站手机网络优化
  • 九度网站建设百度快照优化seo
  • 郑州最好的品牌策划公司上海企业网站seo
  • wordpress 图片说明西安seo报价
  • 网站制作遨游免费海南百度推广电话
  • 分销网站制作条件精准客户数据采集软件
  • 微网站建设完不知道怎么推广咋办全球疫情今天最新消息
  • 网站怎样建设友情链接seo是什么服务
  • 相亲网站拉人做基金国外搜索引擎优化
  • 温州seo关键词排名优化公司哪家效果好
  • 人大网站建设报价单百度竞价推广开户费用
  • b2b网站做推广有效果吗今天重大新闻事件
  • java做网站自定义布局多大今日桂林头条新闻
  • 一级域名的网站怎么做吸引人的软文标题
  • 广东网站建设软件物联网开发
  • 自建网站如何赚钱双11各大电商平台销售数据