[comp.lang.c++] style guidelines

vaughan@puma.cad.mcc.com (Paul Vaughan) (10/24/89)

	dag@Control.LTH.Se (Dag Bruck) wrote:

   In article <1148@aber-cs.UUCP> pcg@cs.aber.ac.uk (Piercarlo Grandi) writes:
   >Always prefix globals with ::, members with this->, static members with name::
   >
   >	All global identifiers should be prefixed with ::, and all
   >	members with this->; this avoids some very hard to catch bugs.

   I haven't been bitten by this yet -- on the other hand, I try to write
   very simple programs.  I would find all the "::" and "this->" to make
   the code less readable, hence more difficult to maintain.

	I agree to a certain extent, but I'm thinking of taking up
writing "this->foo" instead of just "foo".  In reading other people's
code, members tend to catch me off guard.


	I find the operations on a class (primarily the member functions) much
	more important than the actual data representation; I therefore put all
	member functions in front of the data members.  In fact, I have many 
	times wanted to hide the data members completely, which unfortunately
	is not possible without indirection.

	If you want to hide private data members completely, make an
abstract class that has no data members and then derive you
implementation class from it.  This is a wonderful way of making a
very clean, easy to read file that specifies the interface.  It also
solves the problem of distributing .h files publicly while giving away
a minimum of implementation detail.  Finally, especially when using
MI, inheriting data members can get in the way.  When combining two
classes, you can sometimes coalesce the data.  Even if you end up
having to reimplement many of the methods, you can reuse the
interfaces from the two disparate classes.  This is essential for
living with the strong typing of c++.

 Paul Vaughan, MCC CAD Program | ARPA: vaughan@mcc.com | Phone: [512] 338-3639
 Box 200195, Austin, TX 78720  | UUCP: ...!cs.utexas.edu!milano!cadillac!vaughan

jeff1@garfield.mun.edu (Jeff Sparkes) (10/25/89)

>>>>> On 24 Oct 89 00:11:17 GMT, vaughan@puma.cad.mcc.com (Paul Vaughan) said:
Paul> 	dag@Control.LTH.Se (Dag Bruck) wrote:

Paul>    In article <1148@aber-cs.UUCP> pcg@cs.aber.ac.uk (Piercarlo Grandi) writes:
   >Always prefix globals with ::, members with this->, static members with name::
   >
   >	All global identifiers should be prefixed with ::, and all
   >	members with this->; this avoids some very hard to catch bugs.

Paul>    I haven't been bitten by this yet -- on the other hand, I try to write
Paul>    very simple programs.  I would find all the "::" and "this->" to make
Paul>    the code less readable, hence more difficult to maintain.

Paul> 	I agree to a certain extent, but I'm thinking of taking up
Paul> writing "this->foo" instead of just "foo".  In reading other people's
Paul> code, members tend to catch me off guard.

	After going back over some old code, I think I might go even further:

	Derived::x = 2 * Base::y

	so that I know where all the variables are from.
--
Jeff Sparkes	jeff1@garfield.mun.edu || uunet!garfield!jeff1
Humans couldn't have invented golf without alien intervention--Kids in the Hall