Solidity - if 语句


if语句是基本的控制语句,它允许 Solidity 做出决策并有条件地执行语句。

句法

基本 if 语句的语法如下 -

if (expression) {
   Statement(s) to be executed if expression is true
}

这里评估 Solidity 表达式。如果结果值为 true,则执行给定的语句。如果表达式为假,则不会执行任何语句。大多数时候,您在做出决策时会使用比较运算符。

例子

尝试以下示例来了解if语句的工作原理。

pragma solidity ^0.5.0;

contract SolidityTest {
   uint storedData; 
   constructor() public {
      storedData = 10;   
   }
   function getResult() public view returns(string memory){
      uint a = 1; 
      uint b = 2;
      uint result = a + b;
      return integerToString(result); 
   }
   function integerToString(uint _i) internal pure 
      returns (string memory) {
      if (_i == 0) {   // if statement
         return "0";
      }
      uint j = _i;
      uint len;
      
      while (j != 0) {
         len++;
         j /= 10;
      }
      bytes memory bstr = new bytes(len);
      uint k = len - 1;
      
      while (_i != 0) {
         bstr[k--] = byte(uint8(48 + _i % 10));
         _i /= 10;
      }
      return string(bstr);//access local variable
   }
}

使用Solidity First Application章节中提供的步骤运行上述程序。

输出

0: string: 3
Solidity_decision_making.htm