12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
-
-
- /**
- * Created by leon on 1/24/18.
- */
- public class PersonHandler {
- private final Person[] personArray;
-
- public PersonHandler(Person[] personArray) {
- this.personArray = personArray;
- }
-
- public String whileLoop() {
- String result = "";
- // assume there is a `counter`
- int counter = 0;
- // while `counter` is less than length of array
-
- // begin loop
- while (counter < personArray.length){
- result += personArray[counter];
-
- counter++;
-
-
-
- };
-
- // use `counter` to identify the `current Person` in the array
- // get `string Representation` of `currentPerson`
- // append `stringRepresentation` to `result` variable
-
- // end loop
- return result;
- }
-
-
-
- public String forLoop() {
- String result = "";
- // identify initial value
- // identify terminal condition
- // identify increment
-
-
- for(int i = 0 ; i < personArray.length ; i++){
-
- result += personArray[i];
-
-
- }
-
- // use the above clauses to declare for-loop signature
- // begin loop
- // use `counter` to identify the `current Person` in the array
- // get `string Representation` of `currentPerson`
- // append `stringRepresentation` to `result` variable
- // end loop
-
- return result;
- }
-
-
-
- public String forEachLoop() {
- String result = "";
- // identify array's type
- // identify array's variable-name
-
-
-
- for( Object peeps : personArray ){
- result += String.valueOf(peeps);
-
- }
-
- // use the above discoveries to declare for-each-loop signature
- // begin loop
- // get `string Representation` of `currentPerson`
- // append `stringRepresentation` to `result` variable
- // end loop
-
- return result;
- }
-
-
- public Person[] getPersonArray() {
- return personArray;
- }
- }
|