静态多态

静态多态示例代码:

#include
using namespace std;
class Car
{
public:
 void run() const
 {
  cout<<"run a car\n";
 }
};
class Airplane
{
public:
 void run() const
 {
  cout<<"run a airplane\n";
 }
};
template
void run_vehicle(const Vehicle& vehicle)
{
 vehicle.run();
}
int main()
{
   Car car;
   Airplane airplane;
   run_vehicle(car);
   run_vehicle(airplane);
 return 0;
}

上面代码中,Vehicle被修改后用作模版参数而不是公共基类对象,通过编译器进行处理后,最终得到run_vehicle()和run_vehicle()这两个不同的函数,这是和动态多态不同的。

静态多态为C++引入了泛型的概念。这是面向对象编程的一个重要概念,泛型编程被认为是“组件功能基于框架整体而设计”的模版编程。例如,STL就是泛型编程的典范之一。STL是一个框架,它可以提供大量的算法、容器和迭代器,而且全部以模版技术实现。

你可能感兴趣的:(c/c++编程)