dan@dyndata.UUCP (Dan Everhart) (07/06/90)
I'd like to recant a suggestion I made recently: In article <686@dyndata.UUCP> dan@dyndata.UUCP (Dan Everhart) writes: #if defined(DEBUG) #define pure { DebuggerTrap (); } #else #define pure = 0 #endif class Xyz { // ... virtual f () pure; // ... } Turns out this will only work for virtuals which return void. Otherwise the lack of a return statement in the debugging inline will get you scolded by the compiler. (Or should. Turns out Zortech 2.0 doesn't catch this error-- a mixed blessing :-) Maybe version 2.1 does, I don't know. Turbo C++ 1.0 does catch it.) Anyway...bag the above idea.
jamiller@hpcupt1.HP.COM (Jim Miller) (07/11/90)
>IMHO, the point is not to duplicate *precisely* what can be >done with macros, but to write clear, concise, efficient code -- >code which can be understood and maintained easily. So I must >ask whether these macro examples fit these criteria better than >other C++ language mechanisms. >-- > >Steve Clamage, TauMetric Corp, steve@taumet.com >---------- 1. How do you handle portability problems with MS-DOS (the "near" and "far" example) and other machine dependent features without #defines? I agree that doing things "differently" is not necessarily "bad", but how do you write portable "write clear, concise, efficient code -- code which can be understood and maintained easily" without macros? Please, use this example for discussion, not some other straw man (other straw men are ok, just hit this one while you are at it). /* from Walter Bright's response */ #if !(MSDOS || __OS2__) #define cdecl #define near #define far /* make extended keywords go away */ #endif int near function() { ... }; 2. conditional compiles It is NOT a "bad practice", so what is the best C++ way ? 3. Debugging (from Daniel_Gregory_Corbett's response) #define DEBUG /* This might be defined on the command line */ /* using -DDEBUG */ #ifdef DEBUG printf("Debug Statement i=%d\n", i); #endif I don't think the above examples are "syntax abstraction", and they are EXTREMELY useful in writing *correct* "clear, concise, efficient code -- code which can be understood and maintained easily". While they often do subtract from the "clear and concise" the improvement in "correct and portable" is overwhelming IMHO. jim - inquiring minds would like to know - miller My company does not even know I have an opinion, let alone approve of it. ................... By the way folks, does ARM stand for "The Annotated C++ Reference Manual", and if so why isn't it ACRM or AC++RM or TACRM or . . . ? Anyway, references to ARM confused me for a while, and it might others, it's not (yet) as common as K&R.
jimad@microsoft.UUCP (Jim ADCOCK) (07/14/90)
In article <7050024@hpcupt1.HP.COM> jamiller@hpcupt1.HP.COM (Jim Miller) writes: >By the way folks, does ARM stand for "The Annotated C++ Reference Manual", >and if so why isn't it ACRM or AC++RM or TACRM or . . . ? Anyway, >references to ARM confused me for a while, and it might others, it's not >(yet) as common as K&R. I think this is a valid complaint, so I suggest we refer to the Ellis and Stroustrup book as "E&S," which makes a good analogy to "K&R", and not refer to is as "ARM", which could cause confusion with other annotated reference manuals.