我是ConcurrentHashMap的新手想要知道它是如何工作的,所以检查了内部实现相同。据我所知,基于内部的并发级别存在可分段性。但是我并没有理解根据intialCapacity存储多一个Segment S0的逻辑。
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! testCell
cell.testLabel?.text = "ABC"
cell.testImage?.image = UIImage(named: "Santa")
let cellTapRecognizer = UITapGestureRecognizer(target: self, action:Selector("imageTap:"))
cellTapRecognizer.cancelsTouchesInView = false
cell.testImage?.addGestureRecognizer(cellTapRecognizer)
有人可以解释我使用相同和不安全的对象吗?