Solidity - do...while循环



do...while循环类似于while循环,区别在于条件检查发生在循环的末尾。这意味着即使条件为false,循环也至少会执行一次。

流程图

do-while循环的流程图如下所示:

Do While Loop

语法

Solidity中do-while循环的语法如下:

do {
   Statement(s) to be executed;
} while (expression);

注意 - 请勿遗漏do...while循环末尾的分号。

示例

尝试以下示例,学习如何在Solidity中实现do-while循环。

pragma solidity ^0.5.0;

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

使用Solidity第一个应用章节中提供的步骤运行以上程序。

输出

0: string: 12
solidity_loops.htm
广告