Is method reference guaranteed to evaluate to the same object?

58 views Asked by At
class A {
    void b() {}
}

A a = new A();
Runnable c = a::b;

Will c be the same object every time it's initialized?

0

There are 0 answers