首页 > 代码库 > 【c++程序】静态成员的使用
【c++程序】静态成员的使用
#include<iostream> using namespace std; class aspl { public: aspl(float p){price=p;TotalPrice=p+TotalPrice;} ~aspl(){TotalPrice=TotalPrice-price;} static float get(){return TotalPrice;} private: float price; static float TotalPrice;//总价格 }; float aspl::TotalPrice=0; int main() { float f; cout<<"阿司匹林的库存总价格为"; cout<<aspl::get()<<endl; int i=0; cout<<"请输入第"<<i+1<<"次购进的阿司匹林的单箱价格:"; cin>>f; aspl *p[5]; p[i]=new aspl(f); cout<<"阿司匹林的库存总价格为"; cout<<aspl::get()<<endl; i++; cout<<"请输入第"<<i+1<<"次购进的阿司匹林的单箱价格:"; cin>>f; p[i]=new aspl(f); cout<<"阿司匹林的库存总价格为"; cout<<aspl::get()<<endl; cout<<"请输入卖出的阿司匹林的编号,编号即第几次购进"; cin>>i; i=i-1; delete p[i]; cout<<"阿司匹林的库存总价格为"; cout<<aspl::get()<<endl; return 0; }
<img src=http://www.mamicode.com/"http://img.blog.csdn.net/20150128164928263?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdTAxMjUwMzYzOQ==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="" />
【c++程序】静态成员的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。