1 / 437
文档名称:

Prentice Hall - Ada 95 The Craft of Object-Oriented Programming.pdf

格式:pdf   页数:437
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Prentice Hall - Ada 95 The Craft of Object-Oriented Programming.pdf

上传人:bolee65 2014/3/7 文件大小:0 KB

下载得到文件列表

Prentice Hall - Ada 95 The Craft of Object-Oriented Programming.pdf

文档介绍

文档介绍:Ada 95: Contents
Next
Ada 95: The Craft of Object-Oriented
Programming
by
John English
(originally published by Prentice Hall, 1997)
Copyright © John English 2001. All rights reserved.
Permission is given to redistribute this work for non-profit educational use only, provided
that all the constituent files are distributed unchanged and without charge.
This book, originally published by Prentice Hall in 1996, was taken out of print in 2001 and the rights to
the book were subsequently returned to me by Pearson (the pany to Prentice Hall). I have
decided to make it available online in HTML format, and at the same time I have corrected several errata
which were present in the printed editions of the book. It’s perfectly possible that I might have missed
some, or even introduced some brand-new ones, as part of the process of transforming the text into
HTML. If you spot any mistakes, please let me know so I can correct the master copy, which can be
found at /.
Downloadable copies are available as (in zip
format for Windows systems) or as .gz (a gzipped
tarball for Unix systems). Each distribution also includes plete set of examples from the book,
both for Windows () and for Unix ().
Contents
file:///N|/John%20English%20-%20Ada%2095%20The...f%20Object-Oriented%20Programming/ (1 of 8) [6/23/2003 8:36:12 AM]
Ada 95: Contents
Preface
Part One: Fundamentals
1. Programming concepts
What is a program?
Readability, maintainability, portability and reusability
Specifications and implementations
Abstract data types
Generics
Inheritance and polymorphism
2. Fundamentals of Ada
Hello, world!
Names in Ada
Program layout
Context clauses
Strings
A simple calculator
Procedure specifications
Exercises
3