标签: java caching
我想使用ClassValue作为类型缓存。但是,我想为类型分配一些值。为此,我不能使用computeValue(),因为映射是在外部定义的,即不是预先确定的。
ClassValue
computeValue()
我看到put中有一个ClassValue方法,但是无法访问。
put
在我的Map<Class, ?>实现中也没有意义ClassValue。
Map<Class, ?>
我想知道使用类名代替Class是不是更好的选择?
Class
如何使用ClassValue作为缓存?