有人可以向我解释为什么在以下代码中(使用r25630 Windows),第241行的iInsertTot的值为空,或者更重要的是,为什么不执行第234行(“return iInsertTot;”),因此在第241,iInsertTot为空。第231/232行的iInsertTot值为整数。虽然我可以并且可能应该对此进行不同的编码,但是我认为我会尝试看看它是否有效,因为我对期货和链接的理解是它会有效。我之前曾经使用过类似的方式使用“return”,但它确实起作用,但是在这种情况下,我返回的是null(例如下面的第201行)。

/// The problem lines are :
233      fUpdateTotalsTable().then((_) {
234        return iInsertTot;
235      });

在调试器中运行时,第234行似乎“return iInsertTot;”。从未真正执行过。从命令行运行具有相同的结果。

在第233行(fUpdateTotalsTable)上调用的方法只是我正在添加的过程,在此阶段它基本上由同步代码组成。但是,调试器似乎正确地通过它。

我已包含方法“fUpdateTotalsTable()”(第1076行),以防万一导致问题。

刚刚添加了第236至245行,但是如果万一代码无效,我将这些行注释掉并运行,并发生相同的问题。
218  /*
219   * Process Inserts
220   */
221    }).then((_) {
222      sCheckpoint = "fProcessMainInserts";
223      ogPrintLine.fPrintForce ("Processing database ......");
224      int iMaxInserts = int.parse(lsInput[I_MAX_INSERTS]);
225      print ("");
226      return fProcessMainInserts(iMaxInserts, oStopwatch);
227   /*
228   * Update the 'totals' table with the value of Inserts
229   */
230    }).then((int iReturnVal) {
231      int iInsertTot = iReturnVal;
232      sCheckpoint = "fUpdateTotalsTable (insert value)";
233      fUpdateTotalsTable().then((_) {
234        return iInsertTot;
235      });

236   /*
237   * Display totals for inserts
238   */
239    }).then((int iInsertTot) {
240      ogTotals.fPrintTotals(
241        "${iInsertTot} rows inserted - Inserts completed",
242        iInsertTot, oStopwatch.elapsedMilliseconds);
243
244      return null;
245  /*


192  /*
193   * Clear main table if selected
194   */
195    }).then((tReturnVal) {
196      if (tReturnVal)
197        ogPrintLine.fPrintForce("Random Keys Cleared");
198      sCheckpoint = "Clear Table ${S_TABLE_NAME}";
199      bool tClearTable = (lsInput[I_CLEAR_YN] == "y");
200      if (!tFirstInstance)
201        return null;
202      return fClearTable(tClearTable, S_TABLE_NAME);
203
204   /*
205    * Update control row to increment count of instances started
206    */
207    }).then((_) {

1073  /*
1074   * Update totals table with values from inserts and updates
1075  */
1076  async.Future<bool> fUpdateTotalsTable() {
1077    async.Completer<bool> oCompleter = new async.Completer<bool>();
1078
1079    String sCcyValue = ogCcy.fCcyIntToString(ogTotals.iTotAmt);
1080
1081    print ("\n*********  Total = ${sCcyValue}  \n");
1082
1083    oCompleter.complete(true);
1084    return oCompleter.future;
1085  }

最佳答案

您的函数L230-235不返回任何内容,这就是iInsertTotnull L239的原因。要使其工作,您必须在第233行添加return

231      int iInsertTot = iReturnVal;
232      sCheckpoint = "fUpdateTotalsTable (insert value)";
233      return fUpdateTotalsTable().then((_) {
234        return iInsertTot;
235      });

07-24 09:44