ethereum(以太坊)--Bool

Posted eilinge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ethereum(以太坊)--Bool相关的知识,希望对你有一定的参考价值。

pragma solidity ^0.4.0;

contract Bool{
    uint num1 = 100;
    uint num2 = 200;
    bool _c = true;
    
    // && ==
    function yuf() constant returns(bool){
        return num1 == num2 && _c; //false
    }
    
    // || !=
    function huof() constant returns(bool){
        return num1 != num2 || _c; //true
    }
}

 

以上是关于ethereum(以太坊)--Bool的主要内容,如果未能解决你的问题,请参考以下文章

(转)写文章 以太坊(Ethereum)创世揭秘 以太坊(Ethereum)创世揭秘

[Ethereum] 以太坊区块链搭建与使用-私有链

区块链,使用 Go-Ethereum 搭建以太坊私有链

基于Ubuntu系统搭建以太坊go-ethereum源码的开发环境

使用 Go-Ethereum 1.7.2搭建以太坊私有链

以太坊是什么?|猿创征文