apache通用对象池有泛型版本吗?
当使用apache公共池时,它可以为我提供Java对象池的良好实现。然而他们的 KeyedPoolableObjectFactory 接口是类型不安全。 Java中有没有对象池库可以提供泛型接口供我们创建类型安全的对象池?
When using apache common pool, it can provide me a good implementation of Java object pooling. However their KeyedPoolableObjectFactory interface is not type safe. Is there any object pool library in Java that can provide a generics interface for us to create a type safe object pool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apache Commons Pool 版本 1.6 支持泛型
http://commons.apache.org/pool/examples.html< /a>
Apache Commons Pool version 1.6 supports generics
http://commons.apache.org/pool/examples.html
据我所知,还没有,但围绕公共池实现创建类型化包装器很容易,因此您的调用代码可以使用泛型。
Not as far as I know, but it's easy enough to create a typed wrapper around the commons-pool implementation, so your calling code can use generics.