show/hide this revision's text 11 Using Blockquotes

Examples: . . . In Java


Non-Iterative Loops:


Non-Nested Loops: . . . The Index is a value: use.

. . . using i, as you would in Algebra, is the most common practise . . .

for ( int i = 0; i < LOOP_LENGTH; i++ ) {

    // LOOP_BODY
}


Nested Loops: . . . For ease of differentiating Differentiating Indices : use lends to comprehension.

. . . using a descriptive suffix . . .

for ( int iRow = 0; iRow < ROWS; iRow++ ) {

    for ( int iColumn = 0; iColumn < COLUMNS; iColumn++ ) {

    	// LOOP_BODY
    }
}


foreach Loops: . . . An Object needs a name: use .

. . . using a descriptive name . . .

for ( Object something : somethings ) {

    // LOOP_BODY
}


Iterative Loops:


for Loops: . . . Iterators reference Objects, . An Iterator it is neither; an Index, nor an Indice: .

. . . iter abreviates it's an Iterators purpose . . .

for ( Iterator iter = collection.iterator(); iter.hasNext(); /* N/A */ ) {

    Object object = iter.next();

    // LOOP_BODY
}


while Loops: . . . Limit the scope of the Iterator: comment .

. . . commenting on the loops purpose . . .

/* LOOP_DESCRIPTION */ {

    Iterator iter = collection.iterator();

    while ( iter.hasNext() ) {

        // LOOP_BODY
    }
}

The

This last example reads badly without comments, thereby encouraging them. It's verbose perhaps, but useful in scope limiting loops in C.

show/hide this revision's text 10 FIN?

Examples: . . . In Java


Non-Iterative Loops:


Non-Nested Loops: . . . The Index is a value: use i as you would in Algebra

for ( int i = 0; i < LOOP_LENGTH; i++ ) {

    // LOOP_BODY
}


Nested Loops: . . . For ease of differentiating Indices: use a descriptive suffix

for ( int iRow = 0; iRow < ROWS; iRow++ ) {

    for ( int iColumn = 0; iColumn < COLUMNS; iColumn++ ) {

    	// LOOP_BODY
    }
}


foreach Loops: . . . An Object needs a name: use a descriptive name

for ( Object something : somethings ) {

    // LOOP_BODY
}



Iterative Loops:



for Loops: . . . Iterators refer to reference Objects, neither; an Object not Index, nor an Indice: iter abreviates it's purpose

for ( Iterator iter = collection.iterator(); iter.hasNext(); /* N/A */ ) {

    Object object = iter.next();

    // LOOP_BODY
}


while Loops: . . . Limit the scope of the Iterator: comment on the loops purpose

/* LOOP_DESCRIPTION */ {

    Iterator iter = collection.iterator();

    while ( iter.hasNext() ) {

        // LOOP_BODY
    }
}

The last example reads badly without comments, thereby encouraging them.
It's verbose perhaps, but useful in scope limiting loops in C.

show/hide this revision's text 9 FIN : Wiki Ed.

TWO CENTS WORTH OF (Java) EXAMPLES

Examples:


NON-NESTED loops. . . In Java


Non-Iterative Loops:


Non-Nested Loops: . . . "i" The Index is self descriptive for 99.9% of programmersa value: use i as you would in Algebra

for ( int i = 0; i < LOOP_LENGTH; i++ ) {

    // loop body
LOOP_BODY
}


NESTED loops


Nested Loops: . . . be descriptive for For ease of differentiationdifferentiating Indices: use a descriptive suffix

for ( int row iRow = 0; row iRow < ROWS; row++ iRow++ ) {

    for ( int column iColumn = 0; column iColumn < COLUMNS; column++ iColumn++ ) {

    	// loop body
    LOOP_BODY
    }
}


FOREACH loops


foreach Loops: . . . be descriptive An Object needs a name: it's an object not use a numberdescriptive name

for ( Object object something : objects somethings ) {

    // loop body
LOOP_BODY
}



LOOPS USING AN ITERATOR



Iterative Loops:



for Loops: . . . again be descriptive : it's Iterators refer to an object Object not a number

for loopsan Indice: iter abreviates it's purpose

for ( Iterator iter = collection.iterator(); iter.hasNext(); /*OMITTED*/ * N/A */ ) {

    Object object = iter.next();

    // loop body
LOOP_BODY
}


whileloops Loops: , , ,
. . . Limit the scope limitedof the Iterator: comment on the loops purpose

/*LOOP_DESCRIPTION*/ * LOOP_DESCRIPTION */ {

    Iterator iter = collection.iterator();

    while ( iter.hasNext() ) {

        // loop body
    LOOP_BODY
    }
}

The last example reads badly without comments, thereby encouraging them.
It's verbose perhaps, but useful in scope limiting loops in C.

show/hide this revision's text 8 making use of the back tick
    Post Made Community Wiki by Community
show/hide this revision's text 7 added 20 characters in body
show/hide this revision's text 6 added 1 characters in body
show/hide this revision's text 5 pedant mode
show/hide this revision's text 4 final edit fingers x'ed
show/hide this revision's text 3 final edit fingers x'ed 2nd ED lol
show/hide this revision's text 2 added iterator usage
show/hide this revision's text 1