2 Star 3 Fork 4

GKing/Solidity8_perfect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
S_41_Library.sol 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
GKing 提交于 2022-11-10 15:05 . Library 库合约
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
// 返回最大值
library Math {
function max(uint x, uint y) internal pure returns (uint) {
return x >= y ? x : y;
}
}
contract Test {
function testMax(uint _x, uint _y) external pure returns (uint) {
return Math.max(_x, _y);
}
}
// 查找对应索引
library ArrayLib {
function findIndex(uint[] storage arr, uint x) internal view returns (uint) {
for (uint i = 0; i< arr.length; i++) {
if (arr[i] == x) {
return i;
}
}
revert("not found");
}
}
contract TestArray {
// 应用库函数
using ArrayLib for uint[];
uint[] public arr = [3, 2, 1];
// 查找数字在数组中的索引
function testFind() external view returns (uint i) {
// return ArrayLib.find(arr, 2);
return arr.findIndex(2);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jacky2code/solidity8_perfect.git
[email protected]:jacky2code/solidity8_perfect.git
jacky2code
solidity8_perfect
Solidity8_perfect
master

搜索帮助