我的应用中有2个栏:topBar
,bottomBar
。
基本上每个人都会创建图像并在屏幕上设置位置。在我的应用程序中,我添加了一个新屏幕,假设有不同的栏 - Advanced
,但有一些相同的逻辑。
public class TopBar {
public TopBar () {
initImageA();
initImageB();
initResultManager();
initBG();
initLines()
}
}
public class BottomBar {
public BottomBar () {
initBg();
initBox();
initCover();
initcolorsLine();
initMenu()
}
}
在我的应用程序中,我根据状态创建了条形码:
private TopBar mTopBar;
private Bottom mBottomBar;
if (mState == "normal"){
mTopBar = new TopBar();
mBottomBar = new Bottom();
}
else {
mTopBar = new AdvancedTopBar();
mBottomBar = new AdvancedBottomBar();
}
mTopBar.setTitle()
mTopBar.setMainImage();
mBottomBar.drawLines()
.
.
.
AdvancedTopBar
public class AdvancedTopBar extends TopBar {
public AdvancedTopBar () {
super();
removeImageA();
removeImageB();
removeResultManager();
removeBG();
removeLines();
}
private removeImageA() {
.
.
.
}
}
使用内在性为某些相同的逻辑(3,4个成员)创建AdvancedTopBar
并调用父super()
是否触发初始化图像然后我只删除它们是正确的方法通过一个并创建我自己的图像,我认为这是错误的......在实例中我有哪些选项可以使用不同类型的条形图?
答案 0 :(得分:0)
只是众多可能方法中的一种:拥有一个类并在构造函数中传递一个布尔值开关值。
public class TopBar {
public TopBar(boolean advanced) {
doCommonStuff();
if (advanced) {
doAdvancedStuff();
}
}
}
因此new TopBar(true)
会为您提供一个高级栏,new TopBar(false)
为标准栏。