Dubbo中的TargetChildListener这个类的定义在哪,为什么找不到

AbstractZookeeperClient

这个TargetChildListener类的定义,具体在什么位置

public abstract class AbstractZookeeperClient<TargetChildListener> implements ZookeeperClient {}

这是一个泛型表示,也可以用T,E,K,V来表示。

比如List类,E代表你存进List的类型,可以是任何类型。
public interface List<E> extends Collection<E> {}