基本型の縮小変換(narrowing primitive conversion)
Java講座 用語集
索引へ戻る
Java講座のページ
基本型の縮小変換(narrowing primitive conversion)
以下に示す22種類の型変換のこと。変換に伴って、数値の《大きさ》の情報や《精度》を失うことがある。
shortからbyte、charへの変換。
charからbyte、shortへの変換。
intからbyte、short、charへの変換。
longからbyte、short、char、intへの変換。
floatからbyte、short、char、int、longへの変換。
doubleからbyte、short、char、int、long、floatへの変換。
□
索引へ戻る