class Widget { private: double price; int quantity; public: Widget(double p, int q) { price = p; quantity = q; } double getPrice() const { return price; } int getQuantity() const { return quantity; } };假定在某個程式中,使用以下宣告建立了 Widget 類的兩個單獨的範例:
Widget w1(14.50, 100), w2(12.75, 500);
該語句建立了兩個不同的物件 w1 和 w2。每個物件都有自己的 price 和 quantity 成員變數,如圖 1 所示。