Type (型)の conversions (変換) ですな。 ここでいう Type は int や string などを指す データ型(Data type)のこと。
言語仕様の確認
続いて言語仕様をチェック。 下記は型変換の仕様が説明されている「Conversions」から引用。
A conversion changes the type of an expression to the type specified by the conversion. A conversion may appear literally in the source, or it may be implied by the context in which an expression appears.
An explicit conversion is an expression of the form T(x) where T is a type and x is an expression that can be converted to type T.
コメント