0

如何try-catch在 Zig 中实现经典的错误处理?

例如。如何解决此错误并仅append在没有错误发生时执行?

var stmt = self.statement() catch {
    self.synchronize(); // Only execute this when there is an error.
};
self.top_level.statements.append(stmt); // HELP? This should only be executed when no error

// ...
fn synchronize() void {
  // ...implementation
}

fn statement() SomeError!void {
  // ...implementation
}

如果可能,请显示上述代码的修改版本。

4

1 回答 1

3

试试 if-else,如下:

if (self.statement()) |stmt| {
   // HELP? This should only be executed when no error
   self.top_level.statements.append(stmt)
} else |error| {
  // Only execute this when there is an error.
  self.synchronize()
}

您可以在 zig 文档中了解有关 if的更多信息

于 2021-04-10T12:39:03.637 回答