一、重构的概念
1、重构是以改善代码质量为目的代码重写
(1)、使其软件的设计和架构更加合理
(2)、提高软件的扩展性和维护性
2、代码实现和代码重构的不同
(1)、代码实现:按照设计编程实现,重在实现功能
(2)、代码重构:以提高代码质量为目的软件架构优化
(3)、区别
A、代码实现时不考虑架构的好坏,只考虑功能的实现
B、代码重构时不影响已实现的功能,只考虑架构的改善
3、软件开发的过程
(1)、从工程的角度对软件开发中的活动进行定义和管理
4、什么样的代码需要重构
(1)、当发现项目中重复的代码越来越多时
(2)、当发现项目中代码功能越来越不清晰时
(3)、当发现项目中代码离设计越来越远时
二、计算器代码的重构(利用二阶构造模式)
//QCalculatorUI.h
#ifndef _QCALCULATORUI_H_ #define _QCALCULATORUI_H_ #include <QtGui/QApplication> #include <QLineEdit> #include <QPushButton> class QCalculatorUI : public QWidget { QLineEdit* m_edit;//组合关系 QPushButton* m_buttons[20]; QCalculatorUI(); bool construct(); public: static QCalculatorUI* NewInstance(); void show(); ~QCalculatorUI(); }; #endif // _QCALCULATORUI_H_
//QCalculatorUI.cpp
#include "QCalculatorUI.h" QCalculatorUI::QCalculatorUI() : QWidget(NULL,Qt::WindowCloseButtonHint ) { } bool QCalculatorUI::construct() { bool ret = true; QLineEdit *m_edit = new QLineEdit(this);//父组件是this的原因:组合关系,同生死共存亡 const char* btnText[20] = { "7", "8", "9", "+", "(", "4", "5", "6", "-", ")", "1", "2", "3", "*", "<-", "0", ".", "=", "/", "C" }; if(m_edit != NULL) { m_edit->resize(240,30); m_edit->move(10,10); m_edit->setReadOnly(true);//设置文本框为只读,不输入字符串 } else { ret = false; } for(int i=0; (i<4) && ret; i++)//(i<4) && ret表示QLineEdit没有生成,这里也 没必要运行了 { for(int j=0; (j<5) && ret; j++) { m_buttons[i*5 + j] = new QPushButton(this); if(m_buttons[i*5 + j]) { m_buttons[i*5 + j] ->resize(40,40);//[i*5 + j]是转换为一维来算 m_buttons[i*5 + j]->move(10 + (10 + 40)*j, 50 + (10 + 40)*i);//横坐标移五个,纵坐标移四个 m_buttons[i*5 + j]->setText(btnText[i*5 + j]); } else { ret = false; } } } return ret; } QCalculatorUI* QCalculatorUI::NewInstance() { QCalculatorUI* ret = new QCalculatorUI(); if(!(ret && ret->construct())) { delete ret; ret = NULL; } return ret; } void QCalculatorUI::show() { QWidget::show(); setFixedSize(width(), height());//要放在show()后,否则是先固定再显示 } QCalculatorUI::~QCalculatorUI() { }
//main.cpp
#include <QtGui/QApplication> #include "QCalculatorUI.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); QCalculatorUI* cal = QCalculatorUI::NewInstance(); int ret =-1; if(cal != NULL) { cal->show(); ret = a.exec(); delete cal;//记得删除父对象 } return ret; }
三、小结
(1)、重构是软件开发中的重要概念
(2)、重构是以提高代码质量为目的的软件开发活动
(3)、重构不能影响已有的软件功能
(4)、当软件功能实现进行了一定的阶段 时候就需要考虑重构
(5)、重载可简单地理解为对软件系统进行重新架构