1430210230- Foundations of C, Apress
[ Pobierz całość w formacie PDF ]
Foundations of C++/CLI
The Visual C++ Language for
.NET 3.5
■■■
Gordon Hogenson
Foundations of C++/CLI: The Visual C++ Language for .NET 3.5
Copyright © 2008 by Gordon Hogenson
All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means,
electronic or mechanical, including photocopying, recording, or by any information storage or retrieval
system, without the prior written permission of the copyright owner and the publisher.
ISBN-13 (pbk): 978-1-4302-1023-8
ISBN-13 (electronic): 978-1-4302-1024-5
Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1
Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence
of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark
owner, with no intention of infringement of the trademark.
Lead Editor: Matthew Moodie
Technical Reviewer: Damien Watkins
Editorial Board: Clay Andres, Steve Anglin, Ewan Buckingham, Tony Campbell, Gary Cornell, Jonathan
Gennick, Matthew Moodie, Joseph Ottinger, Jeffrey Pepper, Frank Pohlmann, Ben Renow-Clarke,
Dominic Shakeshaft, Matt Wade, Tom Welsh
Project Manager: Kylie Johnston
Copy Editor: Ami Knox
Associate Production Director: Kari Brooks-Copony
Production Editor: Kelly Winquist
Compositors: Susan Glinert, Pat Christenson
Proofreader: April Eddy
Indexer: John Collin
Artist: April Milne
Cover Designer: Kurt Krames
Manufacturing Director: Tom Debolski
Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor,
New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail
orders-ny@springer-sbm.com
, or
visit
http://www.springeronline.com
.
For information on translations, please contact Apress directly at 2855 Telegraph Avenue, Suite 600,
Berkeley, CA 94705. Phone 510-549-5930, fax 510-549-5939, e-mail
info@apress.com
, or visit
http://
www.apress.com
.
Apress and friends of ED books may be purchased in bulk for academic, corporate, or promotional use.
eBook versions and licenses are also available for most titles. For more information, reference our Special
Bulk Sales—eBook Licensing web page at
http://www.apress.com/info/bulksales
.
The information in this book is distributed on an “as is” basis, without warranty. Although every precaution
has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to
any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly
by the information contained in this work.
The source code for this book is available to readers at
http://www.apress.com
.
To my brother Kirk, a man of exemplary character and delightful humor.
Contents at a Glance
Foreword by Brandon Bray
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv
Foreword to the First Edition by Stanley B. Lippman
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xvii
Foreword by Herb Sutter
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix
About the Author
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxvii
About the Technical Reviewer
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxix
Acknowledgments
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxxi
Introduction
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxxiii
■
CHAPTER 1
Introducing C++/CLI
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
■
CHAPTER 2
A Quick Tour of the C++/CLI Language Features
. . . . . . . . . . . . . . . 13
■
CHAPTER 3
Building C++/CLI Programs for the Common Language
Runtime with Visual C++
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
■
CHAPTER 4
Object Semantics in C++/CLI
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
■
CHAPTER 5
Fundamental Types: Strings, Arrays, and Enums
. . . . . . . . . . . . . . . 87
■
CHAPTER 6
Classes and Structs
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
■
CHAPTER 7
Features of a .NET Class
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
■
CHAPTER 8
Inheritance
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 225
■
CHAPTER 9
Interfaces
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249
■
CHAPTER 10
Exceptions, Attributes, and Reflection
. . . . . . . . . . . . . . . . . . . . . . . . 273
■
CHAPTER 11
Parameterized Functions and Types
. . . . . . . . . . . . . . . . . . . . . . . . . . 301
■
CHAPTER 12
An Introduction to the STL/CLR Library
. . . . . . . . . . . . . . . . . . . . . . . 333
■
CHAPTER 13
Interoperability
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 383
■
APPENDIX
Quick Reference
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 423
■
INDEX
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 445
v
[ Pobierz całość w formacie PDF ]