- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
侯捷stl源码剖析注释之46 sgi-stl-uninitialized
stl_uninitialized.h 完整列表
The Annotated STL Sources
1
G++ 2.91.57,cygnus\cygwin-b20\include\g++\stl_uninitialized.h 完整列表
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Hewlett-Packard Company makes no
* representations about the suitability of this software for any
* purpose. It is provided as is without express or implied warranty.
*
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Silicon Graphics makes no
* representations about the suitability of this software for any
* purpose. It is provided as is without express or implied warranty.
*/
/* NOTE: This is an internal header file, included by other STL headers.
* You should not attempt to use it directly.
*/
#ifndef __SGI_STL_INTERNAL_UNINITIALIZED_H
#define __SGI_STL_INTERNAL_UNINITIALIZED_H
__STL_BEGIN_NAMESPACE
// 以下是 __uninitialized_copy 的實作
// 如果 copy construction 等同於 assignment, 而且
// destructor 是 trivial,以下就有效。
// 如果是 POD 型別,執行流程就會轉進到以下函式。這是藉由 function template
// 的引數推導機制而得。
template class InputIterator, class ForwardIterator
inline ForwardIterator
__uninitialized_copy_aux(InputIterator first, InputIterator last,
ForwardIterator result,
__true_type) {
return copy(first, last, result); // 呼叫 STL 演算法 copy()
}
stl_uninitialized.h 完整列表
您可能关注的文档
- _从放弃中得到拯救_读罗伯特_弗罗斯特的_彻底的奉献_.pdf
- [美国国家地理]-.March.2010.-《Wolf.Wars》1.pdf
- —Ludwig Wittgenstein The Importance of Vocabulary.pdf
- “Learn, Play, Teach” “学习,娱乐,教导“ Culinary Excellence 烹饪卓越.pdf
- 《on the farm》.doc
- 《三羟基聚醚多元醇》国标简介.pdf
- 《I AM ALIVE》攻略--PC X360 PS3 【GS】.pdf
- 《基础英语3》2013 -2014学年第1学期期末考试试卷(A 卷).pdf
- 《中国核电站现状》 copy.pdf
- 《怎样能够把台式电脑的资料全部拷贝到笔记本电脑》.pdf
最近下载
- (2025秋新版)人教版三年级数学上册全册教案.docx
- 福建省厦门市2024届高三上学期期中考试数学试题含答案.pdf VIP
- 律师案件卷宗封面+目录+结模版(民事).docx VIP
- 新22S6 消防工程图集 .docx VIP
- 2025年四年级体育抽考题及答案.doc VIP
- (高级)航空油料特设维修员(三级)理论考试题库-下(判断题汇总).docx VIP
- 9宫格数独专项练习题(每日一练,初级、中级、高级各20套题).pdf VIP
- RISN-TG028-2017 保温装饰板外墙外保温工程技术导则规范.pdf VIP
- 四年级体育与健康测评试卷附答案.doc VIP
- 320种中成药功效主治表格汇总.pdf VIP
原创力文档


文档评论(0)