Project1

标题: [Cache类问题]关于clone [打印本页]

作者: 九靈    时间: 2013-8-23 01:16
标题: [Cache类问题]关于clone
本帖最后由 九靈 于 2013-8-23 01:20 编辑

RUBY 代码复制
  1. module RPG
  2.   module Cache
  3.     [url=home.php?mod=space&uid=341345]@Cache[/url] = {}
  4.     def self.load_bitmap(folder_name, filename, hue = 0)
  5.       path = folder_name + filename
  6.       if not @cache.include?(path) or @cache[path].disposed?
  7.         if filename != ""
  8.           @cache[path] = Bitmap.new(path)
  9.         else
  10.           @cache[path] = Bitmap.new(32, 32)
  11.         end
  12.       end
  13.       if hue == 0
  14.         @cache[path]
  15.       else
  16.         key = [path, hue]
  17.         if not @cache.include?(key) or @cache[key].disposed?
  18.           @cache[key] = @cache[path].clone
  19.           @cache[key].hue_change(hue)
  20.         end
  21.         @cache[key]
  22.       end
  23.     end

第18行的
@cache[key] = @cache[path].clone
clone 是必要吗?
何不直接
@cache[key] = @cache[path] 呢?
换句话说
一般而言 clone 的目的是什么?


作者: SuperMario    时间: 2013-8-23 07:57
复制一个副本而不是直接引用
作者: 无脑之人    时间: 2013-8-23 08:11
如果不clone 那么当这个Bitmap被两个Sprite引用,那么将会出现一些无法预料的错误
举例:
  1. a = Sprite.new
  2. b = Sprite.new
  3. c = Bitmap.new("...")
  4. a.bitmap = c
  5. b.bitmap = c
  6. a.bitmap.clear #此时由于是同一个Bitmap导致b的显示也被清空
  7. b.bitmap.dispose #此时这个Bitmap被释放
  8. a.bitmap.clear #由于对释放的Bitmap进行操作而导致出错
复制代码
总之除了Fixnum Symbol以外 传递的过程中是赋值而不是复制 而clone和dup就是用来解决这个问题的
作者: 九靈    时间: 2013-8-23 13:08
刷帖非本意啊
再说经验啥的我不再乎
我是真的有问题啊
再说6R上也没人问
那我只能发帖了




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1