Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - c B
Search - c B - List
本书是久负盛名的C++经典教程,其内容是C++大师Stanley B. Lippman丰富的实践经验和C++标准委员会原负责人Josée Lajoie对C++标准深入理解的完美结合,已经帮助全球无数程序员学会了C++。本版对前一版进行了彻底的修订,内容经过了重新组织,更加入了C++ 先驱Barbara E. Moo在C++教学方面的真知灼见。既显著改善了可读性,又充分体现了C++语言的最新进展和当前的业界最佳实践。书中不但新增大量教学辅助内容,用于强调重要的知识点,提醒常见的错误,推荐优秀的编程实践,给出使用提示,还包含大量来自实战的示例和习题。对C++基本概念和技术全面而且权威的阐述,对现代C++编程风格的强调,使本书成为C++初学者的最佳指南;对于中高级程序员,本书也是不可或缺的参考书。
Date : 2009-10-17 Size : 2.05mb User : cys6139@sina.com

DL : 0
Stanley B Lippman J o s é e L a j o i e著 潘爱民 张丽 译
Date : 2010-10-15 Size : 3.81mb User : horizon428

喜欢C++的朋友都应该听说过这本书的大名吧。 stanley B.Lippman所著的《C++ Essential》雄距书坛历久不衰,堪称C++最佳教本,但是走过10个年头之后,继1237页的《C++ Essential》第三版,Lippman 又朴归真地写了这本276页的《Essential C++》,有了满汉全席,为何还眷顾清粥小菜?完成了伟大的巨著,何必回头再写这么一本轻薄短小的初学者用书呢? 所有知道Lippman和《C++ Essential》的人,脸上都浮现相同的问号。
Date : 2010-08-23 Size : 7.86mb User : benson_wind

DL : 0
本书是久负盛名的C++经典教程引,其内容是C++大师Stanley B. Lippman丰富的实践经验和C++标准委员会原负责人Josée Lajoie对C++标准深入理解的完美结合,已经帮助全球无数程序员学会了C++。
Date : 2010-11-03 Size : 3.81mb User : bixinhaner

第 1 章 文件结构 1.1 版权和版本的声明 1.2 头文件的结构 . 1.3 定义文件的结构 1.4 头文件的作用 1.5 目录结构 第 2 章 程序的版式 2.1 空行 2.2 代码行 2.3 代码行内的空格 2.4 对齐 2.5 长行拆分 2.6 修饰符的位置 2.7 注释 2.8 类的版式 第 3 章 命名规则. 3.1 共性规则 3.2 简单的 WINDOWS 应用程序命名规则 3.3 简单的 UNIX 应用程序命名规则 第 4 章 表达式和基本语句 第 5 章 常量.... 第 6 章 函数设计 第 7 章 内存管理 第 8 章 C++函数的高级特性 第 9 章 类的构造函数、析构函数与赋值函数. 第 10 章 类的继承与组合 第 11 章 其它编程经验 附录 A :C++/C 代码审查表 附录 B :C++/C 试题 附录 C :C++/C 试题的答案与评分标准
Date : 2011-04-01 Size : 259.93kb User : ezhong0812

作者为Abhijit S. Pandya 与Robert B. Macy
Date : 2011-05-27 Size : 13.22mb User : ureckon@163.com

The C++ Programming Language.Third Edition. Bjarne Stroustrup(AT&T Labs),Murray Hill, New Jersey ------------------------------ Contents Contents iii Preface v Preface to Second Edition vii Preface to First Edition ix Introductory Material 1 1 Notes to the Reader ............. 3 2 A Tour of C++ ............. 21 3 A Tour of the Standard Library ............. 45 Part I: Basic Facilities 67 4 Types and Declarations ............. 69 5 Pointers, Arrays, and Structures ............. 87 6 Expressions and Statements ............. 107 7 Functions ............. 143 8 Namespaces and Exceptions .............. 165 9 Source Files and Programs ............. 197 Part II: Abstraction Mechanisms 221 10 Classes ............ 223 11 Operator Overloading ............ 261 12 Derived Classes ............ 301 13 Templates ............ 327 14 Exception Handling ............ 355 15 Class Hierarchies ............ 389 Part III: The Standard Library 427 16 Library Organization and Containers ............ 429 17 Standard Containers ............ 461 18 Algorithms and Function Objects ............ 507 19 Iterators and Allocators ............ 549 20 Strings ............ 579 21 Streams ............ 605 22 Numerics ............. 657 Part IV: Design Using C++ 689 23 Development and Design ............. 691 24 Design and Programming ............ 723 25 Roles of Classes ............ 765 Appendices 791 A The C++ Grammar ............ 793 B Compatibility ............ 815 C Technicalities ............827 Index 869
Date : 2012-03-20 Size : 2.73mb User : mary_112204

C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264-C perfect interpretation of classic algorithms/* header files : my_Include.h* /# include lt; Stdio.hgt;/* Start with the built-in C language function instructions* /# define PI 3.1415926/* Acer constants later, in another chapter Elaborates on* /# define circle (radius) (PI** radius radius)/* Macro function, a round of the area*//* to compare the numerical size of the write functions include writing paper*/int show_big_or_small (int a, b int, int c) (int tmp if (Agt; b) (tmp = a b a = b = tmp) if (BGT; c) (tmp = b b = c c = tmp) if (Agt; b) ( tmp = a b a = b = tmp) printf ( "ascending order by the following results :% d% d% d \ n", a, b, c)) procedures : in ascending order by the following results : 1 2 3 will the built-in functions include documents writte
Date : 2025-12-21 Size : 127kb User : 立功

本书作者根据自己学习C++的亲身体会及多年教学经验,用简单的例子和简练的叙述讲解C++编程,别具特色。 全书共分十八章,内容涉及对象的演化、数据抽象、隐藏实现、初始化与清除、函数重载与缺省参数、输入输出流介绍、常量、内联函数、命名控制、引用和拷贝构造函数、运算符重载、动态对象创建、继承和组合、多态和虚函数、模板和包容器类、多重继承、异常处理和运行时类型识别。 本书作为正式教材和自学用书均非常优秀,作为程序设计者的参考用书亦极为合适。-author of this book learning C according to their personal experience and years of teaching experience, simple examples and concise narrative on the C programming, unique. The book is divided into 18 chapters, covering the evolution of object, data abstraction, hiding realized, initialization and removals, function overloading and default parameters, input and output streams, constants, associated functions, naming control, the application and copy constructor function, Operator, dynamic object creation, and the combination of inheritance and polymorphism and virtual functions, templates and pack containers, multiple inheritance, Exception Handling and runtime type identification. The book as an official self-learning materials and books are excellent, as a procedural designers reference b
Date : 2025-12-21 Size : 21.45mb User : 吴鸣春

本书第二部分讲述的是在Wi n 3 2平台上的Wi n s o c k编程。对于众多的基层网络协议, Wi n s o c k是访问它们的首选接口。而且在每个Wi n 3 2平台上,Wi n s o c k都以不同的形式存在着。 Wi n s o c k是网络编程接口,而不是协议。它从U n i x平台的B e r k e l e y(B S D)套接字方案借鉴了 许多东西,后者能访问多种网络协议。在Wi n 3 2环境中,Wi n s o c k接口最终成为一个真正的 “与协议无关”接口,尤其是在Winsock 2发布之后。-book on the second part of the Wi n 3 2 on the platform's Wi n o c k programming. To many of the grass-roots network protocol, Wi n s o c k is to visit their preferred interface. But in each Wi n 3 2 platform, Wi n o c k's in different forms exist. Wi n s o c k network programming interface, rather than agreement. From U n i x platform B e r k e l e y (S B D) socket program draws many things, The latter would be able to visit a variety of network protocols. In Wi n 3 2 environment, Wi n o c k s interface will eventually become a real "agreement has nothing to do with the" interface, especially in the Winsock 2 was released.
Date : 2025-12-21 Size : 353kb User : 楼洛阳

This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to find out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr-This section contains a brief introductio n to the C language. It is intended as a tutorial o n the language, and aims at getting a reader new to C started as qu ickly as possible. It is certainly not intended as a substitute for any of the numerous textbook 's on C. 2. write a recursive function FIB (n) to fi nd out the nth element in sequence theFibanocci number which is 1,1,2,3,5,8,13,21,34,55, ... 3. write the prefix and postfix form of the follo wing infix expressiona b-c/d e f*- g* h/i ^ j4. wr ite a function to count the number of nodes in a bi nary tr
Date : 2025-12-21 Size : 22kb User : jim

《C++ 程式語言經典本》,The C++ Programming Language, 3rd edition 中譯本的序、 第一章、 第二章、 第三章、 附錄B的電子檔 此處採用的是由華康科技 所開發的 DynaDoc 格式。 內附DynaDoc 閱覽器-"C programming language for the classic," The C Programming Language, 3rd edition of the injunction order, the first chapter, Chapter II, Chapter III, Appendix B of the electronic file, adopted here by DynaComware DynaDoc developed by the format. Keeping containing DynaDoc
Date : 2025-12-21 Size : 3.03mb User : 李艷

《24学时精通c++》的随书源码的下半部分。欢迎下载学习。-"24 school proficiency c" as the source book to the second half. Welcome to download the study.
Date : 2025-12-21 Size : 75kb User : Legend

DL : 0
本书是久负盛名的C++经典教程,其内容是C++大师Stanley B. Lippman丰富的实践经验和C++标准委员会原负责人Josée Lajoie对C++标准深入理解的完美结合,已经帮助全球无数程序员学会了C++。本版对前一版进行了彻底的修订,内容经过了重新组织,更加入了C++先驱Barbara E.Moo在C++教学方面的真知灼见。既显著改善了可读性,又充分体现了C++语言的最新进展和当前的业界最佳实践。书中不但新增大量教学辅助内容,用于强调重要的知识点,提醒常见的错误,推荐优秀的编程实践,给出使用提示,还包含大量来自实战的示例和习题。     对C++基本概念和技术全面而且权威的阐述,对现代C++编程风格的强调,使本书成为C++初学者的最佳指南;对于中高级程序员,本书也是不可或缺的参考书。 -err
Date : 2025-12-21 Size : 1.58mb User : iceman

C++ Primer 第三版(Stanley B.Lippman,Josee Lajoie [同作者作品] 潘爱民译 ) 源代码-C++ Primer third edition (Stanley B. Lippman, Josee Lajoie [with the author of works] Pan Aimin translated) source code
Date : 2025-12-21 Size : 164kb User : wb

DL : 0
这是我心仪已久的一本书 顶级大师Stanley B Lippman J o s é e L a j o i e合著的-This is my favorite long-top master of a book Stanley B LippmanJ os é e L ajoie co-author of
Date : 2025-12-21 Size : 3.81mb User : 盛琪

这是一款功能强大软件,但是破乙的极沙盘,我上传后希望对大家有用-This is a powerful software, but broke the very sand table B, I hope all of you upload useful
Date : 2025-12-21 Size : 16kb User : 王竟

DL : 0
C语言大型综合程序范例解析 C语言大型综合程序范例解析-C language example of large-scale integrated process analytical C language example of large-scale integrated process analytical C language sample analysis procedures for large-scale integrated
Date : 2025-12-21 Size : 264kb User : 李超

a. 设计一个BankTransaction类,允许用户进行如下操作: 开户(分配一个账号,并设置余额,开户至少存入100元)、存款、取款、查询 该类还包括一个成员函数,用于自动提醒用户账户是否已经透支 b.编写测试函数,测试类是否工作: tom开了一个银行账户 card1001,存入100元 tom存入了1000元 tom取出了800元 tom查询到当前的余额为300 tom想取500元,系统告知他,余额不足(A. designs a BankTransaction class that allows users to perform the following operations. Open an account (assign an account number, set the balance, deposit at least 100 yuan), deposit, withdraw money, inquire. The class also includes a member function, which is used to automatically remind users whether the account has been overdrawn. B. writes the test function, and the test class works: Tom opened a bank account, card1001, which deposited 100 yuan. Tom has been saved in 1000 yuan Tom took out 800 yuan Tom query to the current balance of 300 Tom wants to get 500 yuan, and the system tells him that the balance is not enough.)
Date : 2025-12-21 Size : 14kb User : 哈哈哈黑

DL : 0
要求输出a,b,得到123...a,123..a(a+1),123..a(a+1)(a+2)到123...b,判断其中能被3整除的个数。(It is required to output a, B, and get 123... A, 123..A (a+1), 123..A (a+1) (a+2) to 123... B, to determine the number that can be divided by 3.)
Date : 2025-12-21 Size : 1.37mb User : 墨染静然
« 12 3 4 5 6 7 8 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.