幽霊型パラメータ
幽霊型(Phantom Type)とは実行時には存在しないけれども、コンパイル時に静的に型チェックされるような型のことです。
構造体などのデータ型は、ジェネリック型パラメータを一つ余分に持ち、それをマーカーとして使ったりコンパイル時の型検査に使ったりすることができます。このマーカーは実際の値を何も持たず、したがって実行時の挙動そのものにはいかなる影響ももたらしません。
以下の例では、そのようなマーカーとして幽霊型(std::marker::PhantomData)を用い、それぞれ異なった型の値を持つタプルを作成します。
use std::marker::PhantomData; // A phantom tuple struct which is generic over `A` with hidden parameter `B`. // ジェネリックなタプル構造体。2つ目のパラメータは幽霊型 #[derive(PartialEq)] // Allow equality test for this type. // 比較演算子(`==`)での比較を可能にする。 struct PhantomTuple<A, B>(A,PhantomData<B>); // A phantom type struct which is generic over `A` with hidden parameter `B`. // 同様に構造体を定義 #[derive(PartialEq)] // Allow equality test for this type. // 比較演算子での比較を可能にする。 struct PhantomStruct<A, B> { first: A, phantom: PhantomData<B> } // Note: Storage is allocated for generic type `A`, but not for `B`. // Therefore, `B` cannot be used in computations. // 注意点: ジェネリック型Aに対してはメモリが割り当てられているが、 // Bには割り当てられていないため、計算に使うことはできない。 fn main() { // Here, `f32` and `f64` are the hidden parameters. // PhantomTuple type specified as `<char, f32>`. // <char, f32>と型宣言されたPhantomTupleを作成 let _tuple1: PhantomTuple<char, f32> = PhantomTuple('Q', PhantomData); // PhantomTuple type specified as `<char, f64>`. // <chr, f64>のPhantomTuple。 PhantomDataがいかなる浮動小数点でもないことに注目 let _tuple2: PhantomTuple<char, f64> = PhantomTuple('Q', PhantomData); // Type specified as `<char, f32>`. // <char, f32>の型が与えられた構造体を作成 let _struct1: PhantomStruct<char, f32> = PhantomStruct { first: 'Q', phantom: PhantomData, }; // Type specified as `<char, f64>`. // 同様に<char, f64>の構造体 let _struct2: PhantomStruct<char, f64> = PhantomStruct { first: 'Q', phantom: PhantomData, }; // Compile-time Error! Type mismatch so these cannot be compared: // コンパイルエラー!型が違うので`==`で比較することができない! //println!("_tuple1 == _tuple2 yields: {}", // _tuple1 == _tuple2); // Compile-time Error! Type mismatch so these cannot be compared: // コンパイルエラー! 型が違うので比較することができない! //println!("_struct1 == _struct2 yields: {}", // _struct1 == _struct2); }
参照
継承(Derive
), 構造体, タプル