codecamp

IntelliJ IDEA如何将匿名类转换为内部类

匿名类转换为内部类

在 IntelliJ IDEA 中"将匿名转换为内部(Convert Anonymous to Inner)" 重构允许您将匿名类转换为命名的内部类。

示例

重构前重构后
public class Class {
    public Interface method() {
        final int i = 0;
        return new Interface() {
            public int publicMethod() {
            return i;}
        };
    }
}
public class Class {
    public Interface method() {
        final int i = 0;
        return new MyInterfaceClass(i);
    }
}
public class MyInterfaceClass implements Interface {
    private final int
               i;
    public MyInterfaceClass(int i) {
        this.i = i;
    }
    public int publicMethod() {
        return
               i;
    }
}

如果要内联构造函数,请按照下列步骤操作:

  1. 将光标放在要重构的匿名类中。
  2. 在主菜单或选择的上下文菜单上,选择:重构| 将匿名转换为内部。将打开 "将匿名转换为内部" 对话框。
  3. 在 "类名称" 字段中,指定新内部类的名称。
  4. 在 "构造函数参数" 区域中,选择变量,这些变量将被用作内部类构造函数的参数。
  5. 单击 "确定" 以创建内部类。
如何在Java中更改方法签名
IntelliJ IDEA转换为实例方法
温馨提示
下载编程狮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; }