packagewww.base;
/***
* boolean 1bit
* low---------------------------------------high
* byte < short < char < int < long < float < double
* 小數優先順序高於整數,所以float比long高
* byte 1byte -128 ~ 127
* short 2bytes -32768 ~ 32767
* char 2bytes
* int 4bytes -2147483648 ~ 2147483647
* long 8bytes -9223372036854775808 - 9223372036854775808
* float 4bytes
* double 8bytes
* * 高到低必須要強制轉換
* 低到高不需要強制轉換,自動轉換。
* * 注意
* 1,布林值不能轉換
* 2,高到低必須強制轉換,低到高可以用強制轉換。
* 3,轉換時候可能存在記憶體溢位
* 4, 賦值時考慮定義型別的最大值,以免記憶體溢位 */
public
class
demo002_typeconvert
}
002 redis 資料型別
redis支援五種資料型別 string 字串 hash 雜湊 list 列表 set 集合 及zset sorted set 有序集合 使用桌面工具檢視,預設有16個庫,redis支援多個資料庫,並且每個資料庫的資料是隔離的不能共享,並且基於單機才有,如果是集群就沒有資料庫的概念。string 是...
002 判斷JS資料型別
typeof 返回乙個表示資料型別的字串,返回結果包括 number boolean string object undefined function symbol等7種資料型別。舉個栗子 typeof null object typeof undefined undefined typeof1 n...
002 Python資料型別
一 int型別 進製標誌 二進位制0b開頭 八進位制0o開頭 十六進製制 0x開頭 二 float型別 三 str型別 格式化字串 引入 字串之間相加,則會自動將兩個字串拼接為乙個字串。但是,字串不能和其他的型別的資料進行加法運算,所以 a 123 print a a 就會報錯。解決方式一 pyth...