Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在由相同位图制成的游戏屏幕上绘制很多对象。所以,我需要找到一种重用位图的好方法。我有一个类,其中位图是一个字段,屏幕上的每个对象都是这个类(或其子类)的一个实例。在这种情况下如何才能获得最佳性能?
感谢您的建议。
BitmapCache拥有一个负责存储/缓存/检索所有Bitmap对象的类怎么样。
BitmapCache
Bitmap
如果您将位图字段设为静态,则仅存在一个实例。但在这种情况下,您需要管理对该对象的绘图访问。