第二个引号仅表示type参数属于该类。例如:
class MyClass<T>{ public boolean myGenMeth(T x, T y) { boolean result = false; // ... return result; }}然后将这样称呼它:
SomeTest<Integer> mRef = new MyClass<Integer>() :: myGenMeth;

第二个引号仅表示type参数属于该类。例如:
class MyClass<T>{ public boolean myGenMeth(T x, T y) { boolean result = false; // ... return result; }}然后将这样称呼它:
SomeTest<Integer> mRef = new MyClass<Integer>() :: myGenMeth;