溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Solidity中怎么利用returns函數(shù)接收多個(gè)值

發(fā)布時(shí)間:2021-07-14 14:17:50 來源:億速云 閱讀:269 作者:Leah 欄目:互聯(lián)網(wǎng)科技

這篇文章給大家介紹Solidity中怎么利用returns函數(shù)接收多個(gè)值,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

函數(shù)返回多個(gè)值

// 函數(shù)可以返回多個(gè)值
function multipleReturns() returns(uint a, uint b, uint c) {
  return (1, 2, 3);
}

同時(shí)接收所有返回值

function processMultipleReturns() {
  uint a;
  uint b;
  uint c;
  // 這樣來做批量賦值:
  (a, b, c) = multipleReturns();
}

只接收部分返回值

// 或者如果我們只想返回其中一個(gè)變量:
function getLastReturnValue() {
  uint c;
  // 可以對(duì)其他字段留空:
  (,,c) = multipleReturns();
}

項(xiàng)目中實(shí)際碰到問題

 function multipleReturns() returns(string memory a, uint b, uint c) {
      return ("1", 2, 3);
    }
    
    function processMultipleReturns() {
      string memory a;
      uint b;
      uint c;
      // 這樣來做批量賦值:
      (a, b, c) = multipleReturns();
    }
 mapping (uint256 => Tree) public dnaToTree;
 
  //通過 Dna 獲取加密資產(chǎn)詳情 
    function getTreeByDna(uint256 _Dna) public constant returns(string memory treeByDna_user , uint256 treeByDna_dna,string memory treeByDna_treeName, uint64 treeByDna_birthTime, uint256 treeByDna_needFooder, bytes32  treeByDna_status, bool treeByDna_isAdult) {
        return (dnaToTree[_Dna].user, dnaToTree[_Dna].dna, dnaToTree[_Dna].treeName, dnaToTree[_Dna].birthTime, dnaToTree[_Dna].needFooder ,dnaToTree[_Dna].status ,dnaToTree[_Dna].isAdult);
    }
    
    function getTreeByDna_d(uint256 _Dna) public constant {
       
        string memory treeByDna_user;
        uint256 treeByDna_dna;
        string memory treeByDna_treeName;
        uint64 treeByDna_birthTime;
        uint256 treeByDna_needFooder;
        bytes32 treeByDna_status;
        bool treeByDna_isAdult;
        (treeByDna_user, treeByDna_dna, treeByDna_treeName, treeByDna_birthTime, treeByDna_needFooder, treeByDna_status, treeByDna_isAdult) = getTreeByDna(_Dna);
        
    }

關(guān)于Solidity中怎么利用returns函數(shù)接收多個(gè)值就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI