《Oracle9iAS Containers for J2EE》
标签: Oracle9iAS Containers J2EE for
上传时间: 2014-01-02
上传用户:qiao8960
a non-sharing smart pointer class that can be used with STL Containers such as std::map, vector, list, set, and deque. The smart pointer has an assignment operator and greater than operator that call the target object s operator.
标签: non-sharing Containers pointer vector
上传时间: 2015-06-15
上传用户:Late_Li
Swing Components and Containers Swing Components and Containers
标签: Components Containers Swing and
上传时间: 2014-01-26
上传用户:开怀常笑
The goal of this library is to make ODBC recordsets look just like an STL container. As a user, you can move through our Containers using standard STL iterators and if you insert(), erase() or replace() records in our Containers changes can be automatically committed to the database for you. The library s compliance with the STL iterator and container standards means you can plug our abstractions into a wide variety of STL algorithms for data storage, searching and manipulation. In addition, the C++ reflection mechanism used by our library to bind to database tables allows us to add generic indexing and lookup properties to our Containers with no special code required from the end-user. Because our code takes full advantage of the template mechanism, it adds minimal overhead compared with using raw ODBC calls to access a database.
标签: recordsets container library ODBC
上传时间: 2015-10-11
上传用户:xlcky
本书由知名的C++专家Matthew H.Austern执笔,引导你进入泛型编程思维模型,并将你带往此一模型的最重要成品:C++ Standard Template Library(STL)。本书揭示STL的奥秘,告诉你STL不仅仅是一组方便运用的容器类(container classes)。对于泛型组件和可交互作用的组件而言,STL是一个具备扩充能力的框架(framework)、 《泛型编程与STL》阐述了泛型编程的中心思想:concepts、modeling、refinement,并为你展示这些思想如何导出STL的基础概念:iterators、Containers、function objects。循此路线,你可以把STL想像为一个由concepts(而非明确之functions或classes)组成的程序库:、你将学习其正式结构并因此获得其潜在威力所带来的完整优势。本书使你能够: ●以你自己的“可移植组件”及“可交互作用之泛型组件”扩充STL; ●产生一些算法,让它们和它们所处理之型别(types)及数据结构彻底划清界线; ●撰写更精致、更高效、更有效力的代码,可跨平台重复使用。
上传时间: 2014-01-06
上传用户:Avoid98
《C++标准程序库》本书不仅对每一个程序库组件提供范围广泛的说明,也对繁复的观念提供清楚明亮的解释,并描述高效运用这些组件时需要的实际编程细节,提出一个又一个的范例程序。本书是一本包含最新资料的完整书籍。反映出被ANSI/ISO C++语言标准规格书纳入C++标准程序库的最新组成。更明确地说,本书将焦点放在标准模板库(Standard Template Library)身上,检验其中的容器(Containers)
上传时间: 2016-02-27
上传用户:qiaoyue
JavaServer Pages™ Specification This document is intended for: · Web Server and Application Server vendors that want to provide JSP Containers that conform to the Tag Extensions specification. · Web Authoring Tool vendors that want to generate JSP pages that conform to the Tag Extensions specification. · Service providers that want to deliver functionality as tag libraries. · Sophisticated JSP page authors that want to define new tag libraries for their use, or who are responsible for creating tag libraries for the use of a group. · Eager JSP page authors who do not want to or cannot wait for Web Authoring Tools, or even a User’s Guide. This document is not a User’s Guide, but it contains some positioning and explanatory material.
标签: Specification Application JavaServer document
上传时间: 2014-01-03
上传用户:qilin
㆒ 般㆟ 對 C++ templates 的粗淺印象,大約停留在「容器(Containers)」的製作㆖ 。稍有研究 則會發現,templates衍生出來的 C++ Generic Programming(泛型編程)技術,在 C++ 標準程 式庫㆗ 已經遍㆞ 開花結果。以 STL為重要骨幹的 C++ 標準程式庫,將 templates 廣泛運用於容 器 (Containers) 、演算法 (algorithms) 、仿函式 (functors) 、配接器 (adapters) 、配置器 (allocators) 、 迭代器(iterators)㆖ 頭,無處不在,無役不與,乃至於原有的 class-based iostream都被改寫為 template-based iostream。
上传时间: 2016-10-28
上传用户:rocwangdp
C++ 标准程序库提供一组通用类别(classes)和接口(interfaces),可大幅扩充 C++ 核心语言。由于程序库本身并不容易,为了完整运用其组件并从其强大的威力中获得帮助,你需要一份完善的资源,而非一份仅仅陈列类和函数的普通文档。《The C++ Standard Library》不仅对每一个程序库组件提供范围广泛的说明,也对繁杂的感念提供清楚明亮的解释,并描述高效运用这些组件时需要的实际编程细节,提出一个又一个的范例程序。这本包含最新资料的完整书籍,反映出被 ANSI/ISO C++ 语言标准规格书纳入的 C++ 标准程序库的结构。更明确地说,本书将焦点放在标准模板库(Standard Template Library)身上,检验其中的容器(Containers)、迭代器(iterators)、仿函数(functors)和算法(algorithms)。你还可以找到特殊容器、字符串(strings)、数值类别、国际化议题、IOStream。每一个组件都有深刻的呈现,包括其介绍、设计、运用实例、细部解说、陷阱、意想不到的危险,以及相关类别和函数的确切标记(signature)和定义。一份见解深刻的基础概念介绍和一个程序库综合鸟瞰,会对新手带来快速的提升。
标签: interfaces classes 标准 接口
上传时间: 2017-02-10
上传用户:天涯
Learn how to: * Tokenize a null-terminated string * Create a search and replace function for strings * Implement subtraction for string objects * Use the vector, deque, and list sequence Containers * Use the container adaptors stack, queue, and priority_queue * Use the map, multimap, set, and multiset associative Containers * Reverse, rotate, and shuffle a sequence * Create a function object * Use binders, negators, and iterator adapters * Read and write files * Use stream iterators to handle file I/O * Use exceptions to handle I/O errors * Create custom inserters and extractors * Format date, time, and numeric data * Use facets and the localization library * Overload the [ ], ( ), and -> operators * Create an explicit constructor * And much, much more
标签: null-terminated Tokenize Create string
上传时间: 2014-01-18
上传用户:yph853211