Qt源码中的Template模板用法.ppt

Qt源码中的Template模板用法.ppt

ID:48200999

大小:395.00 KB

页数:17页

时间:2020-01-15

Qt源码中的Template模板用法.ppt_第1页
Qt源码中的Template模板用法.ppt_第2页
Qt源码中的Template模板用法.ppt_第3页
Qt源码中的Template模板用法.ppt_第4页
Qt源码中的Template模板用法.ppt_第5页
资源描述:

《Qt源码中的Template模板用法.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、Qt源码中的C++Template用法yoyo,2015ReviewofC++TemplateSyntaxQtTemplateMetaProgrammingC++TemplateusageinQt123一般用法ReviewofC++TemplateSyntaxyntax//一个简单的加法模板templateclassAddition{public:Tfun(Ta,Tb){return(a+b);}};specializationReviewofC++TemplateSyntaxyntaxtemplate<>classAddition{public:char*fu

2、n(char*a,char*b){...strcat_s(...);returna;}};PartialspecializationReviewofC++TemplateSyntaxyntax/***特化为引用,指针类型**偏特化,半特化,局部特化,部分特化**在编码时,总纠结着是指针好呢,还是引用好呢,要加const?**有了这样的特化,确实方便甚多。*/templateclassAddition{public:T&fun(T&a,T&b){a=a+b;returna;}};编译期类型推断QtTemplatetax/*quintptrandqptrdiffisgua

3、ranteedtobethesamesizeasapointer,i.e.sizeof(void*)==sizeof(quintptr)&&sizeof(void*)==sizeof(qptrdiff)*/templatestructQIntegerForSize;template<>structQIntegerForSize<1>{typedefquint8Unsigned;typedefqint8Signed;};template<>structQIntegerForSize<2>{typedefquint16Unsigned;typedefqint16Signed;};tem

4、plate<>structQIntegerForSize<4>{typedefquint32Unsigned;typedefqint32Signed;};template<>structQIntegerForSize<8>{typedefquint64Unsigned;typedefqint64Signed;};templatestructQIntegerForSizeof:QIntegerForSize{};typedefQIntegerForSizeof::Unsignedquintptr;typedefQIntegerForSizeo

5、f::Signedqptrdiff;QTAssistant的文档QtTemplatetaxtypedefquintptrIntegraltypeforrepresentingapointers(usefulforhashing,etc.).Typedefforeitherquint32orquint64.ThistypeisguaranteedtobethesamesizeasapointeronallplatformssupportedbyQt.Onasystemwith32-bitpointers,quintptrisatypedefforquint32;onasystem

6、with64-bitpointers,quintptrisatypedefforquint64.Notethatquintptrisunsigned.Useqptrdiffforsignedvalues.Seealsoqptrdiff,quint32,andquint64.typedefQIntegerForSizeof::Signedqptrdiff;QTypeInfo-typetrait(=feature,quality)QtTemplatetax/*QTypeInfo-typetraitfunctionalityqIsDetached-datasharingfunctio

7、nality*//*Thecatch-alltemplate.*/templateinlineboolqIsDetached(T&){returntrue;}templateclassQTypeInfo{public:enum{isPointer=false,isComplex=true,isStatic=true,isLarge=(sizeof(T)>sizeof

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。