Chapter 1 Introduction 1 1.1 Drawing a Triangle 2 1.2 Drawing a Triangle Mesh 17 1.3 Drawing a Complicated Scene 27 1.4 Abstraction of Systems 27 Chapter 2 Core Systems 31 2.1 The Low-Level System 31 2.1.1 Basic Data Structures 33 2.1.2 Encapsulatin
该资源不适合C、C++初学者,可作为C++高手向大师级进化的参考书。 内容: ... 17 Library introduction 17.1 General 17.2 The C standard library 17.3 Definitions 17.4 Additional definitions 17.5 Method of descr iption (Informative) 17.6 Library-wide requirements 18 Language support lib
Java Language Specification Third Edition ========================================= 1 Introduction 1.1 Example Programs 1.2 Notation 1.3 Relationship to Predefined Classes and Interfaces 1.4 References 2 Grammars 2.1 Context-Free Grammars 2.2 The Le
Table of Contents Copyright Praise for C++ Common Knowledge Preface Acknowledgments A Note on Typographical Conventions Item 1. Data Abstraction Item 2. Polymorphism Item 3. Design Patterns Item 4. The Standard Template Library Item 5. References Ar
经典的C语言教程,由Brian W. Kernighan 和 Dennis M. Ritchie编写,俗称K&R。此为第二版,目录如下: Preface........................................................................................................................................ 6 Preface to the first edition .....
class
class 关键字声明类类型或定义类类型的对象。
语法
[template-spec]
class [ms-decl-spec] [tag [: base-list ]]
{
member-list
} [declarators];
[ class ] tag declarators;
参数
template-spec
可选模板说明。
ms-decl-spec
可选存储类说明有关更多信息
tag
给定于类的类型名称。在类范围内的标记成为了保留字。标志是可选项。如