|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public interface LoopBody
The implementation of this interface contains the code inside a for-loop construct.
| Method Summary | |
|---|---|
void |
run(int i)
This method contains the code inside the for-loop, as in a native for-loop like this:
for (int i = start; i < end; i += increment) {
// loop body
}
|
| Method Detail |
|---|
void run(int i)
throws java.lang.Exception
for (int i = start; i < end; i += increment) {
// loop body
}
i - the current loop count
java.lang.Exception - any exception thrown during execution
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||