codecamp

向上拉取类成员重构

向上拉取类成员重构

该向上拉取类成员重构将类方法在类层次结构中向上移动 - 从当前类移到超类。

示例:将类方法移动到超类

假设您有一个AccountingDepartment类可以扩展抽象Department类。

class Department {
    name;
    printName() {
        console.log("Department name: " + this.name);
    }
}

class AccountingDepartment extends Department {
    printMeeting() {
        console.log("The Accounting Department meets each Monday at 10am.");
    }
    generateReports() {
        console.log("Generating accounting reports...");
    }
}

在此示例中,向上拉取类成员重构将printMeeting()从AccountingDepartment移动到期超类Department。

class Department {
    name;
    printName() {
        console.log("Department name: " + this.name);
    }
    printMeeting() {
        console.log("The Accounting Department meets each Monday at 10am.");
    }
}

class AccountingDepartment extends Department {
    generateReports() {
        console.log("Generating accounting reports...");
    }
}

将类的方法移动到超类

  1. 将光标放在要从中拉取成员的类的任何位置。
  2. 在主菜单或上下文菜单中选择:Refactor|拉取会员。该拉取成员对话框将会打开。
  3. 从下拉列表中,选择要移动方法的超类。
  4. 要提取方法,请在要提取的成员列表中选中它旁边的复选框。
移动符号重构
重命名重构
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

IntelliJ IDEA的一般准则

什么是IntelliJ IDEA项目

使用IntelliJ IDEA的意图行为

IntelliJ IDEA使用运行/调试配置

特定于VCS的程序

IntelliJ IDEA语言和特定框架指南

IntelliJ IDEA的数据库和SQL功能

IntelliJ IDEA使用之JavaServer Faces(JSF)

IntelliJ IDEA:分析PHP应用程序的性能

IntelliJ IDEA:调试PHP应用程序

IntelliJ IDEA:适用于PHP的Google App Engine

IntelliJ IDEA更多内容

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }