当前位置: 首页 > 面试题库 >

Lambda Java参考

戚祺
2023-03-14
问题内容

我想将转换anonymous classlambda expression。但是这个匿名类我使用this关键字。

例如,我写了这个简单的Observer/Observable模式:

import java.util.ArrayList;
import java.util.Collection;

public static class Observable {
    private final Collection<Observer> notifiables = new ArrayList<>();

    public Observable() { }

    public void addObserver(Observer notifiable) { notifiables.add(notifiable); }
    public void removeObserver(Observer notifiable) { notifiables.add(notifiable); }

    public void change() {
        notifiables.forEach(notifiable -> notifiable.changed(this));
    }
}

public interface Observer {
    void changed(Observable notifier);
}

和带有匿名类的此示例代码(使用this关键字):

public class Main {

    public static void main(String[] args) {
        Observable observable = new Observable();
        observable.addObserver(new Observer() {
            @Override
            public void changed(Observable notifier) {
                notifier.removeObserver(this);
            }
        });
        observable.change();
    }
}

但是当我将其转换为lambda表达式时:

public class Main {

    public static void main(String[] args) {
        Observable observable = new Observable();
        observable.addObserver(notifier -> { notifier.removeObserver(this); });
        observable.change();
    }
}

我收到此编译错误:

Cannot use this in a static context and in a non `static` context



public class Main {
    public void main(String[] args) {
        method();
    }

    private void method() {
        Observable observable = new Observable();
        observable.addObserver(notifier -> {
                notifier.removeObserver(this);
        });
        observable.change();
    }
}

编译错误是:

The method removeObserver(Main.Observer) in the type Main.Observable is not applicable for the arguments (Main)

所以我的问题是:有没有办法引用“ lambda对象” this


问题答案:

你不能thislambda表达式中引用。的语义this已更改为仅在lambda中引用周围类的实例。无法this从lambda内部引用lambda表达式。

问题是你this在该main()方法中使用。主要方法是静态的,并且没有对表示的对象的引用this

this内部类的实例内部使用时,你将引用内部类的实例。Lambda表达式不是内部类,this没有引用Lambda表达式的实例。它引用你在其中定义lambda表达式的类的实例。在你的情况下,它将是Main的实例。但是,由于你使用的是静态方法,因此没有实例。

这是你的第二个编译错误告诉你的内容。你将Main实例移交给你的方法。但是你的方法签名需要一个Observer实例。

更新:

在Java语言规范15.27.2说:

与出现在匿名类声明中的代码不同,名称的含义以及出现在lambda正文中的this和super关键字以及引用的声明的可访问性与周围环境相同(除了lambda参数引入新名称)。

在lambda表达式的主体中(无论是隐式的还是隐式的)此透明性(即与周围环境相同)将为实现提供更大的灵活性,并防止主体中不合格名称的含义相互依赖在超载解决方案上。

实际上,lambda表达式需要谈论自己(以递归方式调用其自身或调用其其他方法)是很不寻常的,而使用名称来引用封闭类中的东西则更为常见。否则将被遮盖(这是toString())。如果有必要让lambda表达式引用自身(如通过this),则应改用方法引用或匿名内部类。



 类似资料:
  • Note This list is auto-generated from the source code and contains the most recent parameter documentation. Attitude EKF estimator The module where these parameters are defined is: examples/attitude_e

  • 引用参数是reference to a memory location变量reference to a memory location的reference to a memory location 。 通过引用传递参数时,与值参数不同,不会为这些参数创建新的存储位置。 参考参数表示与提供给方法的实际参数相同的存储器位置。 您可以使用ref关键字声明引用参数。 以下示例演示了这一点 - using

  • 属性参数用来给已定义的属性附加元数据,类似于脚本语言的 Decorator 或者 C# 的 Attribute。 属性检查器相关参数 参数名 说明 类型 默认值 备注 type 限定属性的数据类型 (Any) undefined 详见 type 参数 visible 在 属性检视器 面板中显示或隐藏 boolean (注1) 详见 visible 参数 displayName 在 属性检视器 面板

  • 属性参数用来给已定义的属性附加元数据,类似于脚本语言的 Decorator 或者 C# 的 Attribute。 属性检查器相关参数 参数名 说明 类型 默认值 备注 type 限定属性的数据类型 (Any) undefined 详见 type 参数 visible 在 属性检视器 面板中显示或隐藏 boolean (注1) 详见 visible 参数 displayName 在 属性检视器 面板

  • Modules 参考了以下开源模块: adm-zip clean-css colors fs-extra glob howdo open uglify-js ydr-utils seajs fis webpack posthtml Articles 感谢以下文章: FED社区:coolie 介绍专辑 FED社区:跟我学 coolie 专辑 知乎:大公司里怎样开发和部署前端代码? InfoQ:前端工

  • http://openstack.redhat.com/Networking_in_too_much_detail http://web.archive.org/web/20150215214007/http://masimum.inf.um.es/fjrm/2013/12/26/the-journey-of-a-packet-within-an-openstack-cloud http://pa

  • ECMAScript 6 入门。 ESlint是一个javascript代码审查框架。 Testem A test runner that makes Javascript unit testing fun. 创建一个testem的测试目录,然后安装testem: $ cd /opt && mkdir testem && cd /opt/testem $ npm install testem -g

  • Hyperledger Composer参考资料包含许多主题,包括npm模块的参考信息、CLI命令、建模语言、API、连接配置文件和常用术语表。 Historian(历史记录) Hyperledger Composer Historian提供了一个库,其中包含历史交易的信息 Hyperledger Composer npm模块 Hyperledger Composer包含许多npm模块,提供使用H