[] [][] [][][]
class Triangle { public: Triangle(int w); int get_area() const; private: int width; }; Triangle::Triangle(int w) { width = w; }