码迷,mamicode.com
首页 > 其他好文 > 详细

软件设计随笔

时间:2019-09-03 11:30:40      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:不包含   类库   软件   利用   产生   重用   必须   项目   软件设计   

关于接口:建议接口不包含成员编量,只包括接口。这样功能单一,利于接口聚集,重用。

尤其是基础类库要注意这点。当然带来多写代码。

例如在项目中用类 

class A{

interface0();

interface1();

interface2();

interface3();

 

int kkk;

int uuu;

};

 

如果只要利用A的接口时 ,必须带着kkk,uuu编量。易产生混淆。建议为

lass A{

interface0();

interface1();

interface2();

interface3();

}

 

软件设计随笔

标签:不包含   类库   软件   利用   产生   重用   必须   项目   软件设计   

原文地址:https://www.cnblogs.com/keleman/p/11451849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!