Re: Code Comments
Re: Code Comments
- Subject: Re: Code Comments
- From: Dov Rosenberg <email@hidden>
- Date: Tue, 15 Aug 2006 23:09:45 -0400
- Thread-topic: Code Comments
Title: Re: Code Comments
I am an old fashioned programmer. I usually write comments to describe what I am GOING to do before I actually do the code. Then I just fill in the code. Helps me organize my thoughts better.
I do something like:
/** This is the documentation of what this thing is supposed to do
**/
Public String goDoSomething(){
// initialize my variables
// get array of things
// cycle thru array and update each item
// save changes, build response
}
Then I actually go back and write the code after I get the sequence of events in the correct order. Most of the time I usually stub out the entire class before I implement it.
--
Dov Rosenberg
Conviveon/Inquira
Knowledge Management Experts
http://www.conviveon.com
http://www.inquira.com
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden