[2]
DejaVU Online:
Principles of Object-Oriented Software Development
(©)
extern void print(int); extern void print(float);
template< class T > class list { ... }
list<int>* alist;
class shape { ... };
class circle : public shape { ... }
shape* s = new circle;
STL is supported by C++ compilers that adhere to the C++
standard, including Microsoft Visual C++ and the Cygnus/GNU C++ compilers.
A more extensive discussion of STL is beyond the scope of this
book, but the reader is advised to consult
|
Hush Online Technology
hush@cs.vu.nl
12/29/99 |
|
|