Virtual Method Table - CI/CD用語集の定義
virtual method table (vtable) とは、型に付随する関数ポインタのテーブルで、ポリモーフィックな呼び出しがオブジェクトの具体的な型に応じてテーブルをインデックスすることで runtime に解決されます。interface や trait object の背後で動的ディスパッチを実装します。
関連ガイド
Trait Object - CI/CD Glossary DefinitionA trait object stores a value plus a pointer to its method table, enabling runtime polymorphism over differin…
Monomorphization - CI/CD Glossary DefinitionMonomorphization generates a specialized copy of generic code for each concrete type used, trading larger bin…
Inlining - CI/CD Glossary DefinitionInlining replaces a function call with the function’s body, removing call overhead and unlocking further opti…