Site hosted by Angelfire.com: Build your free website today!
 

Code Blocks

  • Class

    class MyClass {
      // Many IDEs
      // default
      // to  this
      // style.
    }
  • Method

    void myMethod()
    {
      // Considered the
      // easiest to read.
    }
  • Conditional

    If (age >= 50)
      {
        // Classic
        // style.
      }
  • Iteration

    for (int count = 0; count < 50; count++) {
        // Mixed style.
        // Yuck
      }