solidity学习笔记(十二)固定长度字节数组

一个字节八位
pragma solidity ^0.4.6;
contract TestFixBytes{
    // 一个字节 八位 固定大小数组内容和长度都不可修改 
    bytes9 a = 0x6c111122ab9;//
    bytes1 b = 0x69;//105
    function test1() constant returns(bool){
         return a <= b;
     }
    function test2() constant returns(bool){
         return a < b;
     }
    function test3() constant returns(bool){
         return a == b;
     }
    function test4() constant returns(bool){
         return a >= b;
     }
    function test5() constant returns(bool){
         return a > b;
     }
    // 索引访问 
    function indeOf() returns(byte){
        return a[0];
    }
    // 获取数组长度
    function getLengthOfBytes() constant returns(uint){
        return a.length;
    }
    
}

 

你可能感兴趣的:(区块链)