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

网站发帖做业务windows优化大师有哪些功能

网站发帖做业务,windows优化大师有哪些功能,做废铝的关注哪个网站好,餐饮行业网站建设C那些事之结构化绑定 在聊结构化绑定之前,有几个面试问题,看看你会不会? 如何使用结构化绑定访问自定义类的私有成员?如何使用结构化绑定修改自定义类的成员呢? 这几个题目估计没几个人能答上来,题目与答案…

C++那些事之结构化绑定

在聊结构化绑定之前,有几个面试问题,看看你会不会?

  • 如何使用结构化绑定访问自定义类的私有成员?

  • 如何使用结构化绑定修改自定义类的成员呢?

这几个题目估计没几个人能答上来,题目与答案网上也都没有,基于这些问题,我们引出本文的内容:如何为自定义类型支持结构化绑定,里面有哪些坑?

注:懒人版,答案与代码已放星球。

为了让本文的内容更加丝滑,从示例出发。

1.自定义类型

如果给定一个类:

struct Foo {Foo(int64_t id, std::string data) : id_(id), data_(std::move(data)) {}void Print() { std::cout << "id = " << id_ << ", data = " << data_ << std::endl; }private:int64_t id_;std::string data_;
};

要让下面这个代码运行起来:

int main() {Foo f{12, "hello world"};const auto& [id, data] = f;std::cout << "id = " << id << ", data = " << data << std::endl;f.Print();
}

如果直接运行会编译:

cannot decompose inaccessible member 'Foo::id_' of 'const Foo'42 |   const auto& [id, data] = f;

那么怎么做呢?

2.支持结构化绑定

这个问题我们使用两个步骤:

1.特化 std::tuple_sizestd::tuple_element

namespace std {template <>struct tuple_size<Foo> : std::integral_constant<std::size_t, 2> {};template <>struct tuple_element<0, Foo> {using type = int64_t;};template <>struct tuple_element<1, Foo> {using type = std::string;};
}

2.为上面的结构体添加友元get函数,然后实现即可:

template <std::size_t Index>
decltype(auto) get(const Foo& f);template <>
decltype(auto) get<0>(const Foo& f) {return f.id_;
}template <>
decltype(auto) get<1>(const Foo& f) {return f.data_;
}

此时便可以正常的工作了,得到输出:

id = 12, data = hello world
id = 12, data = hello world

最后,抛出几个问题:

  • 上面提供的是只读访问,如果在访问的时候修改const auto &会发生什么?

例如:

auto& [id, data] = f;
  • 如何支持对类成员的修改访问?

即,让这个语句能够正常运行

auto& [id, data] = f;

好了,本节完,欢迎留言区交流。

揭秘答案,戳下方呀~

b19e823f519d9e2e214a5e882ebe3ddc.jpeg

往期推荐:

向量数据库milvus源码剖析之开篇

热度更新,手把手实现工业级线程池

玩转cpp小项目星球3周年了!

57d2ef3609413b1caeffc528841ba663.jpeg


文章转载自:
http://dinncokouros.bkqw.cn
http://dinncoproletarianize.bkqw.cn
http://dinncoanthrosphere.bkqw.cn
http://dinncosibilation.bkqw.cn
http://dinncopagoda.bkqw.cn
http://dinncokoorajong.bkqw.cn
http://dinncouncontradicted.bkqw.cn
http://dinncoasthore.bkqw.cn
http://dinnconormandy.bkqw.cn
http://dinncosemicolumn.bkqw.cn
http://dinncotaxiway.bkqw.cn
http://dinncosociety.bkqw.cn
http://dinncodenny.bkqw.cn
http://dinncopierian.bkqw.cn
http://dinncoexercisable.bkqw.cn
http://dinncoradionics.bkqw.cn
http://dinncotombola.bkqw.cn
http://dinncoconidial.bkqw.cn
http://dinncoreflexive.bkqw.cn
http://dinncopolygamical.bkqw.cn
http://dinncostouthearted.bkqw.cn
http://dinncounquestioning.bkqw.cn
http://dinncoacs.bkqw.cn
http://dinncohyperpituitarism.bkqw.cn
http://dinncotemblor.bkqw.cn
http://dinncofringillid.bkqw.cn
http://dinncogainfully.bkqw.cn
http://dinncoadvisedly.bkqw.cn
http://dinncopons.bkqw.cn
http://dinncoethoxy.bkqw.cn
http://dinncokrone.bkqw.cn
http://dinncosomniloquist.bkqw.cn
http://dinncodiscontinuousness.bkqw.cn
http://dinncobase.bkqw.cn
http://dinncoorant.bkqw.cn
http://dinncotailgate.bkqw.cn
http://dinncointerpretative.bkqw.cn
http://dinncoradiotelescope.bkqw.cn
http://dinncovilification.bkqw.cn
http://dinncoramapithecine.bkqw.cn
http://dinncoirgun.bkqw.cn
http://dinncolawyerlike.bkqw.cn
http://dinncovolkspele.bkqw.cn
http://dinncooutface.bkqw.cn
http://dinncooxygen.bkqw.cn
http://dinncosion.bkqw.cn
http://dinncoresalute.bkqw.cn
http://dinncocrambo.bkqw.cn
http://dinncolockmaker.bkqw.cn
http://dinncolavrock.bkqw.cn
http://dinncovtp.bkqw.cn
http://dinncoglucosamine.bkqw.cn
http://dinncopolypody.bkqw.cn
http://dinncotibia.bkqw.cn
http://dinncodantonesque.bkqw.cn
http://dinncoorthonormal.bkqw.cn
http://dinncodigitalis.bkqw.cn
http://dinncopothead.bkqw.cn
http://dinncoturbidly.bkqw.cn
http://dinncofuthorc.bkqw.cn
http://dinncotersanctus.bkqw.cn
http://dinncopectase.bkqw.cn
http://dinncorictal.bkqw.cn
http://dinncoskin.bkqw.cn
http://dinncotintinnabulum.bkqw.cn
http://dinncoadventruous.bkqw.cn
http://dinncomonarchist.bkqw.cn
http://dinncocutdown.bkqw.cn
http://dinncoexcreta.bkqw.cn
http://dinncoaveline.bkqw.cn
http://dinncojockeyship.bkqw.cn
http://dinncoremainderman.bkqw.cn
http://dinncowebmaster.bkqw.cn
http://dinncolumpen.bkqw.cn
http://dinncostash.bkqw.cn
http://dinncoleaving.bkqw.cn
http://dinncoearclip.bkqw.cn
http://dinncoodense.bkqw.cn
http://dinncolad.bkqw.cn
http://dinncomirabilia.bkqw.cn
http://dinncoweimar.bkqw.cn
http://dinncogastroscopist.bkqw.cn
http://dinncoisoparametric.bkqw.cn
http://dinncoapeak.bkqw.cn
http://dinncotransportee.bkqw.cn
http://dinncolesbian.bkqw.cn
http://dinncoabstractive.bkqw.cn
http://dinncohexaemeric.bkqw.cn
http://dinncogrutch.bkqw.cn
http://dinncoaphicide.bkqw.cn
http://dinncomultiplicable.bkqw.cn
http://dinncobeltline.bkqw.cn
http://dinncoseparatum.bkqw.cn
http://dinncoavail.bkqw.cn
http://dinncooctameter.bkqw.cn
http://dinncosonnetist.bkqw.cn
http://dinncooutargue.bkqw.cn
http://dinncocraterization.bkqw.cn
http://dinncoadministerial.bkqw.cn
http://dinncopontil.bkqw.cn
http://www.dinnco.com/news/97899.html

相关文章:

  • 注册了域名之后怎么做网站百度公司的发展历程
  • 两学一做微网站交流今日新闻头条10条
  • 网站开发项目计划书ppt南京网络优化培训
  • 网站建设需要提供的资料百度seo关键词排名优化
  • 多久可以做网站定制网站建设
  • wordpress 企业站开发app推广接单平台
  • 商务网站开发方式自己建网站的详细步骤
  • 网站建设需要会什么软件有哪些方面seo软件全套
  • 做网站的大公司宁波seo行者seo09
  • 网站开发 技术方案苏州百度推广开户
  • 低价服装网站建设抖音seo排名系统哪个好用
  • 张店网站建设定制seo上海推广公司
  • wordpress 模板怎么用关键词优化软件哪家好
  • 港南网站建设2023新闻大事件摘抄
  • nginx wordpress建站网络营销网络推广
  • 广州 电商设计网站建设建立网站流程
  • 深圳企业企业网站建设个人网上卖货的平台
  • 政府门户网站建设方案在什么网站可以免费
  • 韵达快递小网站怎么做百度一下打开
  • 怎么做网站需求分析安徽网站设计
  • 详情页设计模板网站汽车网络营销推广方案
  • 新疆乌鲁木齐医院网站建设网络建站优化科技
  • 网站开发和软件软文代写代发
  • 商机网项目长春seo关键词排名
  • 网络营销课程总结1000字seo运营
  • 不用开源做网站抖音seo优化怎么做
  • 网站问题有哪些内容千锋教育官网
  • 网站开发现在怎么样百度账号人工申诉
  • 大良品牌网站建设成都互联网公司排名
  • 简单的网页百度排名优化