c – 编译器是否会排除未使用的模板代码?

当您使用具有多种方法的模板(如vector)并编译代码时,编译器是否会丢弃未使用方法中的代码

解决方法

除非使用模板,否则不会实例化模板,因此实际上没有要丢弃的代码.

标准说(14.7.1 / 10)

An implementation shall not implicitly instantiate a function template,a member template,a non-virtual member function,a member class,or a static data member of a class template that does not require instantiation. It is unspecified whether or not an implementation implicitly instantiates a virtual member function of a class template if the virtual member function would not otherwise be instantiated. The use of a template specialization in a default argument shall not cause the template to be implicitly instantiated except that a class template may be instantiated where its complete type is needed to determine the correctness of the default argument. The use of a default argument in a function call causes specializations in the default argument to be implicitly instantiated.

因此,如果您可以避免将模板的成员函数设置为虚拟,则编译器将不会为它们生成任何代码(如果编译器足够智能,那么它也可能适用于虚函数).

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录<future>future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...