2 Star 3 Fork 4

GKing/Solidity8_perfect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
S_05_Variables.sol 1003 Bytes
一键复制 编辑 原始数据 按行查看 历史
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
// Variables
// 状态变量
// 局部变量
// 全局变量
contract Variables {
// 3.1 状态变量 StateVariables :写入区块链的变量数据
uint public myUint = 123;
uint public i;
bool public b;
address public myAddress;
// 3.2 局部变量
function foo() external {
uint x = 123;
bool f = false;
x += 456;
f = true;
// 修改状态变量的值
i = 123;
b = true;
myAddress = address(1);
}
// 3.3 全局变量,常用于记录链上信息和账户信息
function globalVars() external view returns (address, uint, uint) {
// 调用此函数的地址
address sender = msg.sender;
// 出区块时间戳
uint timestamp = block.timestamp;
// 当前区块编号
uint blockNum = block.number;
return (sender, timestamp, blockNum);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jacky2code/solidity8_perfect.git
[email protected]:jacky2code/solidity8_perfect.git
jacky2code
solidity8_perfect
Solidity8_perfect
master

搜索帮助