c++编程技巧

  c++庞大精深,在学习时必须有一定的代码量,写的多了,慢慢就知道c++代码怎么写了。

typedef Rect_<int> Rect2i;  //typedef的使用。
typedef Rect_<float> Rect2f;
typedef Rect_<double> Rect2d;
typedef Rect2i Rect;

  

原文地址:https://www.cnblogs.com/Robin008/p/12227181.html