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

grooke@tcom.stc.co.uk (Gill Rooke) (06/19/91)

I believe that 'c' really became a viable language when it picked up what is now the standard 'C' library. I also believe that this grew up on either Unix or on the PDP8/11 systems; were they distinguishable at that time. 

Anyway, 'C' without the standard libraries is unthinkable nowdays. Apart from the vagueness of my beliefs, I doubt that these statements are controversial. The next few may be.

1. 'C++' will not become a viable language until it also adopts a standard library.

2.  Any library adopted should be closed (with a top class called 'object' similar to smalltalk or NIHCL) to provide
	exception handling
	management of dynamic linking
	general system control and consistency.

3.  There should only be one such closed library, otherwise you get these features managed twice over.

4.  There are memory and run time overheads, but these will have to be accepted.

5. The standard library should be the NIHCL or its DOS subset.

I will now dig a little hole and bury myself. When the shouting dies I will summarise the responses. I am interested in knowing where and how to start a C++ programming team for future reference.

Gil  (: 

euamts@eua.ericsson.se (Mats Henricson) (06/19/91)

grooke@tcom.stc.co.uk (Gill Rooke) writes:

>1. 'C++' will not become a viable language until it also adopts a
>   standard library.

I don't agree. I think that there are some fairly mature libraries you
can use that will boost your productivity. They do not have to be THE
standard as long as they are standard within your particular project.

>2. Any library adopted should be closed (with a top class called
>   'object' similar to smalltalk or NIHCL) to provide
>	exception handling
>	management of dynamic linking
>	general system control and consistency.

No 'object' at the top, please! With the introduction of templates some
of the arguments for the top 'object' class will no longer be valid.
And there are some strong arguments aginst 'object' already.

>3. There should only be one such closed library, otherwise you get
>   these features managed twice over.

No, I think I don't agree here either. As long as there is only one
base library within YOUR project, you don't have to manage anything
twice over. With you kind of arguments, there should be no such thing
as a standard C++ library, since in projects across the globe we are
already using some kind of a library. If there is an extra STANDARD
library, we have to manage yet another one since we all want to use
the new standard library. I think we have to live with tens or even
more different libraries in large projects:
a) Base classes (bags, sets, dictionaries, etc, etc). Rational calls
   these STRUCTURES in the coming Booch-documentation.
b) Tools (filters, searching, sorting, etc). Rational -> TOOLS
c) Support classes (Exceptions, Mixins, nodes, etc etc) Rational ->
   SUPPORT CLASSES
d) Math classes (Matrixes, etc etc (TBD  ;-))
e) Network communication classes
f) Classes for building real time systems (semaphore, etc etc (I dont
   know much of these things))
g) Classes for building user interfaces
h) Application domain specific classes
i) Application specific classes
j) etc
k) etc

>4. There are memory and run time overheads, but these will have to
>   be accepted.

I agree. You cannot please them all.

>5. The standard library should be the NIHCL or its DOS subset.

NIHCL ?? DOS ?? Do you mean MS DOS, or what?

>Gil  (: 

Mats Henricson, Sweden