Monday, November 21, 2005

Tips #1 : Commenting

I've spent the past couple of days learning a new computer language, PHP. I'm currently in the process of developing an online management system, and after a careful anaylsis PHP seemed to be the right language to develop with.

So I have been going through some tutorials and looking at lots of coding examples. As a pretty experianced programmer, I am still having a hard time understanding some code developed by other people.

Which leads me to the first tip in this series.

The following coding tip is very straight forward, but ESSENTIAL to keeping you effective in the Information Technology Industry, especially when working in a team enviroment.

1. Comment your code:
If anyone is going to be reviewing your code at any point in time, you should always leave appropriate commets to help guide them. Here is how I structure my commenting, lets use JAVA for this example

  • /////////////////////////////////////////
  • // Title of Program Author Name
  • // Date of creation
  • //
  • //Breif description of the program
  • /////////////////////////////////////////
  • public class TestClass
  • {
  • //Variables
  • protected int iCounter; Here is where you would list all your global variables
  • //Methods List all the methods after this for good programing structure
  • ////////////////////
  • // main(String args [])
  • // Do: What is the main function of this method
  • // Input: What is brought into the method
  • // Returns: What the method returns
  • public static void main(String args[])
  • {
  • //
  • }//End main Method--> Keep track of your end braces with a small comment
  • }// EndTestClass
  • Commenting while you program does not take a lot of time, and it will definitly pay off for you later, when you try to review some comple code.

Thanks for checking out my tip! come back soon for another one, or leave a comment if you want me to cover a certain topic.

3 Comments:

At 5:00 p.m., November 21, 2005, Blogger Graham said...

Thanks Sis!

 
At 12:42 a.m., November 22, 2005, Blogger Graham said...

Hey! Those are my next planned tips!! Don't ruin this for me!

Comments are important too!.

 
At 5:19 p.m., November 22, 2005, Blogger Graham said...

Jamie! Don't worry bro, I've been getting to the gym every other day! Just to make you proud! And ofcourse make the ladies go wild.

 

Post a Comment

<< Home