How to create an object pool to be able to borrow and return objects

前端 未结 3 888
情歌与酒
情歌与酒 2020-12-05 05:32

I wanted to know that, is it possible to create a pool of objects? So that I can take an object from the pool and once I\'m done with the work, I can put it into the pool.

3条回答
  •  日久生厌
    2020-12-05 06:15

    As an alternative, if each object isn't that heavy weight, and/or you don't mind keeping the object around for each thread, consider ThreadLocal objects.

    http://tutorials.jenkov.com/java-concurrency/threadlocal.html

提交回复
热议问题