二進制表示方式let bin1:UInt8 = 0b11111111 //255let bin2:UInt8 = 0b00001000 //8八進制表示方式let otc:UInt8 = 0o377 //255十六進制表示方式let hex:UInt8 = 0xff //255