私はシリアル接続(したがってJamod)の使用とコーディングを含むプロジェクトに参加しています
//7. Execute the transaction repeat times
//repeat =10 defined in point 1. (go to the source to read the code)
int k = 0;
do {
trans.execute();
res = (ReadInputRegistersResponse) trans.getResponse();
for (int n = 0; n < res.getWordCount(); n++) {
System.out.println("Word " + n + "=" + res.getRegisterValue(n));
}
k++;
} while (k < repeat);
[ソース: http://jamod.sourceforge.net/kb/serial_master_howto.html、質問を本当に理解するには、例全体を読む必要があると思います]
私の質問は、なぜトランザクションを繰り返すのですか? 繰り返し変数はメインに配置された引数から取得され、チュートリアルにあるようにオプションである ため、私には意味がありません。要約すると、なぜその繰り返しがあるのですか?
どんな助けでも大歓迎です!