说到Android资源,什么是包?

When it comes to Android resources, what is a bag?

我正在深入研究一些低级本机 Android 代码。我正在尝试了解框架最终如何填充属性集。我正在四处挖掘 here 我将 运行 保留为 "bag"。我对这是什么没有很好的心理印象..

  1. 我们有bag_entrys

  2. 我们可以lock/unlock

  3. 我们的样式属性查找器的类型是BagAttributeFinder

这是什么东西的缩写吗?我觉得我在这里遗漏了一些明显的东西,应该让我的精神抽象只需点击一下。

你说的是一种叫做包的数据结构。

"A bag is a collection where removing items is not supported—its purpose is to provide clients with the ability to collect items and then to iterate through the collected items. Stats.java is a bag client that reads a sequence of real numbers from standard input and prints out their mean and standard deviation."

来源:http://algs4.cs.princeton.edu/13stacks/