欢迎来到天天文库
浏览记录
ID:18582912
大小:64.00 KB
页数:6页
时间:2018-09-19
《构造函数的实例化与调用.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、namespaceConsoleApplication1{classFruit{publicdoubleweight;//重量publicintcount;//数量publicstringcolor;//颜色}classOrange:Fruit{publicstringtaste;//口味publicOrange(doublePweight,intPcount,stringPcolor,stringPtaste){weight=Pweight;count=Pcount;color=Pcolor;
2、taste=Ptaste;}publicvoidDescription(){Console.WriteLine("weight={0}count={1}color={2}taste={3}",weight,count,color,taste);Console.WriteLine("tastewell,isn't?");}}classTest{staticvoidMain(string[]args){Orangeor=newOrange(2.5,10,"OrangeRed","qu
3、itegood");or.Description();Console.ReadKey();}}}
此文档下载收益归作者所有