djones@megatest.UUCP (Dave Jones) (12/28/87)
in article <1941@pdn.UUCP>, reggie@pdn.UUCP (George W. Leach) says: > > In article <3880@uw-june.UUCP> pardo@uw-june.UUCP (David Keppel) writes: > >>How about .cc or .CC this is distinct from .c on even MS-DOS systems. > [..] > So why do we need different extensions for C++, Concurrent C or any other > extension to C? The only difficulty I would see is that the programmer > would be less inclined to run a C++ program through the C compiler. > It's been pointed out already: *make* and similar utilities need a way to determine the type of a file from its name. I think it was a mistake to use .c for C++ files in the first place. I would like to see CC pass .c files straight through to cc (without going through cfront), just as the cc passes .s files through to the assembler. Using .h for both kinds of include-files also seems wrong. Furthermore, CC is NOT a proper extension of C. I wish it were, but I can see why the founding fathers chose the course they took. One difference is in function-declarations: If you say extern int foo(); ... foo(bar); CC will complain about a type-mismatch. Also, the name-spaces (scopes) are not exactly the same. And CC does not use the same search path for include- directories. Looks in /usr/include/CC, rather than /usr/include. Common data initializers are not treated the same. There may be other reasons why C programs cannot be given directly to CC. Which brings up a possible project. Seeing as how it is too late to make C++ a proper extension of C, how about a program which converts C programs to C++. It should be easy enough if you possess a C parser. Although the new C++ program would still be in C style, there are advantages. Let's suppose that you have some old code which defines a data-structure as a pointer to an array, and that functions all over the place access the array "directly". (No doubt this was written before YOU hired on.) Now you need to change the definition so that the data-structure contains an array and a count-field, say. Rather than edit all the old code, you just define the new data-structure, and the operators "[]", "->", "+", "&", etc. I've only had my C++ for a couple of weeks, but I've already had occasion to do just that!