“需要”的区别是什么并“如果”坚固的智能合同中的声明
要求是一个错误处理全局功能的错误,基本上是按照要求的方式运行的,如果要求内部的条件是正确的,那么编译器将执行其下面写的代码。 但是,一般的逻辑语句如果在坚固性内也具有相同的目的, 因此,想知道这两个都有差异。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
区别在于
require()
是您所说的错误处理语句,但是如果此语句失败,则交易将恢复。鉴于您有如果其他
语句,则必须确保自己还原交易。The difference is that
require()
is an error handling statement like you had stated, but if this statement fails, the transaction is reverted. Whereas if you had anif else
statement, you would have to make sure to revert the transaction yourself.需要
恢复失败,用于错误处理。
时呼叫要求(x)
当x = false替代方法执行此操作
: https://docs.solitylang.org/en/v0.8.8.8.23/control-structures.html#error andring-error handling-sast-resert-require-require-require-require-require-require-require-require-require-require-revert-and-ceptions
如果语句
如果false继续执行。
不恢复。
require
Reverts on failure,use for error handling.
Calling require(x) when x=false
Alternative way to do it:
https://docs.soliditylang.org/en/v0.8.23/control-structures.html#error-handling-assert-require-revert-and-exceptions
if statement
if false then continues execution.
Does not revert.
https://docs.soliditylang.org/en/v0.8.23/grammar.html#a4.SolidityParser.ifStatement
最好使用,因为它是气体效率的。
It is preferable to use If because it is gas efficient.