Solidity - 算术运算符


加法运算符 (+) 适用于数字和字符串。例如“a”+10 将得到“a10”。

例子

以下代码展示了如何在 Solidity 中使用算术运算符。

pragma solidity ^0.5.0;

contract SolidityTest {
   constructor() public{
   }
   function getResult() public view returns(uint){
      uint a = 1; 
      uint b = 2;
      uint result = a + b; //arithmetic operation
      return result; 
   }
}

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

输出

0: uint256: 3
solidity_operators.htm