BlockChain入门-Solidity基础语法
BlockChain入门-Solidity基础语法
01-入门
plaintext
1 | pragma solidity ^0.8.21 |
第一行注释不写会出现警告。
第二行指编译器版本不允许小于0.8.21,“^”表示不允许编译器版本大于等于0.9.0。
第三行创建string
型变量_string
。
02-变量类型
plaintext
1 | int uint uint256 |
03-函数
关键字pure
标记的函数不能读写链上状态,不消耗gas fee。
plaintext
1 | function addPure(uint256 _number)external pure returns(uint256 new_number){ |
关键字view
只能读不能改写,不消耗gas fee。
plaintext
1 | function addView()external view returns(uint256 new_number){ |
关键字internal
标记的函数只能被该合约内其他函数调用,不能被外界调用。
plaintext
1 | function minus()internal{ |
关键字external
标记的函数只能在该合约外被调用,不能被该合约内其他函数调用:
plaintext
1 | function minusCall()external{ |
关键字payable
标记的函数能够接受Remix的“VALUE”的转账。
plaintext
1 | function minusPayable()external payable returns(uint256 balance){ |
关键字public
标记的函数从内部和外部都可见,private
只能从内部访问且继承的合约也不能使用。
04-函数输出
多个返回值:
plaintext
1 | function returnMultiple()public pure returns(uint256,bool,uint256[3] memory){ |
命名式返回,仍可用return
:
plaintext
1 | function returnNamed()public pure returns(uint256 _number,bool _bool,uint256[3] memory _array){ |
解构式赋值:
plaintext
1 | uint256 _number; |
05-变量数据存储和作用域(未完)
数据位置:
storage
:默认状态,存储在链上,消耗gas fee多。
memory
:函数的参数和临时变量一般用这个,存储在内存中,不上链,消耗gas fee少。当string、bytes、array和自定义结构等返回数据类型变长的情况下必须加memory
。
calldata
:存储在内存中,不上链,不能修改,一般用于函数参数。
plaintext
1 | function fCalldata(uint[] calldata _x)public pure returns(uint[] calldata){ |
当状态变量storage
赋值给本地storage
时,以及memory
赋值给memory
时,会创建引用,类似指针。其他情况均创建副本。
plaintext
1 | uint[] x=[1,2,3]; |
常见全局变量:
address payable msg.sender
表示消息发送者,即当前的调用者。
06-引用类型、数组、结构体
数组:
plaintext
1 | //固定长度数组 |
数组字面常数:
plaintext
1 | contract C{ |
创建动态数组时需要一个个元素赋值:
plaintext
1 | uint[] memory x=new uint[](3); |
数组成员:
plaintext
1 | a.length; //返回数组长度 |
结构体:
plaintext
1 | struct Student{ |
09-常数
const
必须在声明的时候初始化,之后不能改变。immutable
可以在声明时和构造函数中初始化。
plaintext
1 | uint256 constant CONSTANT_NUM=10; |
10-控制流
plaintext
1 | function ifElseTest(uint256 _number)public pure returns(bool){ |
11-构造函数&修饰器(未完)
plaintext
1 | modifier onlyOwner{ |
12-事件(未完)
事件声明与释放:
plaintext
1 | event Transfer(address indexed from,address indexed to,uint256 value); //定义Transfer事件 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 The Blog of Monoceros406!