Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
class A { void b() {} } A a = new A(); Runnable c = a::b;
c每次初始化时都会是同一个对象吗?
c