[comp.lang.c++] C++ and Standard Libraries

bright@Data-IO.COM (Walter Bright) (07/15/89)

In article <6590194@hplsla.HP.COM> jima@hplsla.HP.COM (Jim Adcock) writes:
>Are standard libraries a part of C++ *the language* or not?

The only library functions that are part of the language are:
	1. Implementations of new, delete, and variants.
	2. Code to handle static constructors/destructors.

>Does a conforming C++ compiler have to provide streams?  complex numbers?

Streams seems to expected. Complex numbers less so. But these are library
issues, not language ones.

>Standard C libraries? -- Kind of hard to do anything without these.

We can assume that the C libraries will be available with C++. Though if
the C++ translates to C, it will use the target C compiler's library.
Compilers like mine will include all the C stuff with the package.

jima@hplsla.HP.COM (Jim Adcock) (07/17/89)

> >Does a conforming C++ compiler have to provide streams?  complex numbers?
> 
> Streams seems to expected. Complex numbers less so. But these are library
> issues, not language ones.

Actually, compiler issues, not library issues.  Conforming compilers have to
provide standard libraries.  Then the common libraries of a language -like
streams- because a defacto part of the language, and people start writing
compilers that move some of the libraries functionality to the compiler,
making for faster code.

I look forward to the day, maybe five or ten years from now, where reasonbly
priced C++ compilers *with libraries* are available from dozens of vendors,
and programs not containing machine dependencies will successfully compile
*and link* on all of them.

Progress seems painfully slow now though.