private List<String> delegate; public LoggingListDecorator(List<String> delegate) { this.delegate = delegate; } // 之后所有覆盖的方法都调用 delegate 相应的方法 }