跳转到内容
View in the app

A better way to browse. Learn more.

彼岸论坛

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
欢迎抵达彼岸 彼岸花开 此处谁在 -彼岸论坛

[Java] Java 大佬们 ,来来来做题了? 看看是否能够在心里直接做出来。

发表于

下面的 test() 方法中有 10 个方法, 你觉得哪些调用无法通过编译?

    @FunctionalInterface
    public interface Executor1 {
        void execute(Runable1 command);
    }

    @FunctionalInterface
    public interface Executor2 extends Executor{
        void execute(Runnable command);
    }

    @FunctionalInterface
    public interface Executor3 extends Executor2{
        void execute(Runnable command);
    }
    public void setMy(Executor e){

    }

    public void setMy1(Executor1 e){

    }

    public void setMy2(Executor2 e){

    }

    @FunctionalInterface
   public  interface Runable1 extends Runnable{

    }

    @FunctionalInterface
    public  interface Runable2 extends Runable1{

    }



    public void test(){
        setMy(Runnable::run);
        setMy(Runable1::run);
        setMy1(Runnable::run);
        setMy1(Runable1::run);
        setMy1(Runable2::run);
        setMy2(Runnable::run);
        setMy2(Runable1::run);

        setMy2(new Executor3() {
            @Override
            public void execute(Runnable command) {

            }
        });
        setMy2(new Executor() {
            @Override
            public void execute(Runnable command) {

            }
        });
        setMy2(new Executor2() {
            @Override
            public void execute(Runnable command) {

            }
        });
    }

}

Featured Replies

No posts to show

创建帐户或登录来提出意见

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.