Solidity代码规范(官方建议)
Style Guide
The goal of this guide is not to be the right way or the best way to write solidity code. 本指南的目标并不是编写稳定性代码的正确方法或最佳方法。
1. 在一个solidity源文件中,合约与合约(或库、接口等)空两行。
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.0 <0.9.0;
contract A {
// ...
}
contract B {
// ...
}
contract C {
// ...
}
2. 在一个合约中,函数与函数之间空一行。
abstract 合约,未实现的函数体可不留白行。
// SPDX-License-Identifier: GPL-3
共有 0 条评论