- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我有以下来自 Programming Ruby 1.9 的代码(稍微改编)我只是想确保我的思维过程是准确的
module Trace
def self.included(culprit)
#Inject existing methods with tracing code:
culprit.instance_methods(false).each do |func|
inject(culprit, func)
end
#Override the singletons method_added to ensure all future methods are injected.
def culprit.method_added(meth)
unless @trace_calls_internal
@trace_calls_internal = true
Trace.inject(self, meth) #This will call method_added itself, the condition prevents infinite recursion.
@trace_calls_internal = false
end
end
end
def self.inject(target, meth)
target.instance_eval do
#Get the method
method_object = instance_method(meth)
#Rewrite dat sheet
define_method(meth) do |*args, &block|
puts "==> Called #{meth} with #{args.inspect}"
#the bind to self will put the context back to the class.
result = method_object.bind(self).call(*args, &block)
puts "<== #{meth} returned #{result.inspect}"
result
end
end
end
end
class Example
def one(arg)
puts "One called with #{arg}"
end
end
#No tracing for the above.
ex1 = Example.new
ex1.one("Sup") #Not affected by Trace::inject
class Example #extend the class to include tracing.
include Trace #calls Trace::inject on existing methods via Trace::included
def two(a1, a2) #triggers Example::method_added(two) and by extension Trace::inject
a1 + a2
end
end
ex1.one("Sup again") #Affected by Trace::inject
puts ex1.two(5, 4) #Affected by Trace::inject
我仍在努力思考它是如何工作的。我希望是否有人可以确认我的思维过程,因为我想确保我了解这里发生的事情。评论是我自己加的。我真的认为我对方法绑定(bind)、单例类和元编程的理解充其量是新手。
首先,Trace::included 被任何包含它的类调用。这个方法做了两件事,获取该类中现有函数的列表(如果有的话)并使用 inject 覆盖它们的方法。然后它修改包含该模块的类的单例类,并覆盖默认的 method_added 方法,以确保每次添加方法时,额外的 include 注入(inject)都会影响它。此方法使用一个变量来防止无限递归,因为对 inject 的调用本质上会调用 method_added。
Trace::works 如下:使用 instance_eval 将 self 设置为存在于类定义中的上下文。因此,scope(?) 被修改为它在该类定义中的样子。
然后我们将 method_object 设置为 instance_method(meth) ,这将获得将要添加的原始方法。由于 instance_method 没有明确的接收者,它会默认为 self,这与类定义中的上下文相同?
然后我们使用define_method定义一个同名的方法。因为我们是在instance_eval的上下文中,这相当于定义了一个实例方法,会覆盖已有的方法。我们的方法接受任意数量的参数和一个 block (如果存在的话)。
我们添加一些光晕来放置我们的“Tracing”,然后我们还调用存储在 method_object 中的原始方法,因为原始方法正在被覆盖。此方法是未绑定(bind)的,因此我们必须使用 bind(self) 将其绑定(bind)到当前上下文,以便它具有与最初相同的上下文?然后我们使用 call 并传递参数和 block ,存储它的返回值,打印后返回它的返回值。
我真的希望我能充分描述这一点。我的描述准确吗?我特别不确定粗体内容和以下行:
method_object.bind(self).call(*args, &block)
最佳答案
Trace::works as follows: set self to the context that exists within the class definition using instance_eval. Therefore the scope(?) is modified to how it would be within that class definition.
使用 instance eval,您可以评估自身绑定(bind)到对象的 block ,在这种情况下,对象将是包含模块的类。 (即罪魁祸首)。为清楚起见,以下之间存在差异:
o = Object.new
o.instance_eval do
puts self
end
和
class Foo < Object end
Foo.instance_eval do puts self end
回答:是的,您的这个假设是正确的!
Then we set method_object to instance_method(meth) which will get the original method that will added. Since instance_method does not have an explicit receiver, it will default to self which will be the same as the context of being within the class definition?
是的,您的假设是正确的。请注意,询问:
culprit.instance_methods(false) => [:someselector, :someotherselector]
并且在这个context中调用实例方法确实和调用self.instance_method是一样的。
This method is unbound, so we must bind it to the current context using bind(self) so it has the same context as it would originally?
是的。当您以跟踪模块中定义的方式获取方法时,您将获得一个未绑定(bind)的方法对象,该对象可以按照描述再次绑定(bind)。
如果您想深入了解 Ruby 的元编程,我推荐以下书籍:http://pragprog.com/book/ppmetr/metaprogramming-ruby它解释了 Ruby 的对象系统、mixins、 block 和任何你能想象到的东西背后的所有细节。
关于ruby-on-rails - 了解使用 method_added 动态覆盖实例方法的 ruby 元编程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16824244/
我开始在 Ethereum blockchain 上了解如何开发智能合约以及如何写 web-script用于与智能合约交互(购买、销售、统计......)我得出了该怎么做的结论。我想知道我是否正确理解
我正在 UIView 中使用 CATransform3DMakeRotation,并且我正在尝试进行 45º,变换就像向后放置一样: 这是我拥有的“代码”,但显然没有这样做。 CATransform3
我目前正在测试 WebRTC 的功能,但我有一些脑逻辑问题。 WebRTC 究竟是什么? 我只读了“STUN”、“P2P”和其他...但是在技术方面什么是正确的 WebRTC(见下一个) 我需要什么
我在看 DelayedInit在 Scala in Depth ... 注释是我对代码的理解。 下面的 trait 接受一个非严格计算的参数(由于 => ),并返回 Unit .它的行为类似于构造函数
谁能给我指出一个用图片和简单的代码片段解释 WCF 的资源。我厌倦了谷歌搜索并在所有搜索结果中找到相同的“ABC”文章。 最佳答案 WCF 是一项非常复杂的技术,在我看来,它的文档记录非常少。启动和运
我期待以下 GetArgs.hs打印出传递给它的参数。 import System.Environment main = do args main 3 4 3 :39:1: Coul
private int vbo; private int ibo; vbo = glGenBuffers(); ibo = glGenBuffers(); glBindBuffer(GL_ARRAY_
我正在尝试一个 for 循环。我添加了一个 if 语句以在循环达到 30 时停止循环。 我见过i <= 10将运行 11 次,因为循环在达到 10 次时仍会运行。 如果有设置 i 的 if 语句,为什
我正在尝试了解 WSGI 的功能并需要一些帮助。 到目前为止,我知道它是一种服务器和应用程序之间的中间件,用于将不同的应用程序框架(位于服务器端)与应用程序连接,前提是相关框架具有 WSGI 适配器。
我是 Javascript 的新手,我正在尝试绕过 while 循环。我了解它们的目的,我想我了解它们的工作原理,但我在使用它们时遇到了麻烦。 我希望 while 值自身重复,直到两个随机数相互匹配。
我刚刚偶然发现Fabric并且文档并没有真正说明它是如何工作的。 我有根据的猜测是您需要在客户端和服务器端都安装它。 Python 代码存储在客户端,并在命令运行时通过 Fabric 的有线协议(pr
我想了解 ConditionalWeakTable .和有什么区别 class ClassA { static readonly ConditionalWeakTable OtherClass
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 5年前关闭。 Improve this questi
我还没有成功找到任何可以引导我理解 UIPickerView 和 UIPickerView 模型的好例子。有什么建议吗? 最佳答案 为什么不使用默认的 Apple 文档示例?这是来自苹果文档的名为 U
我在看foldM为了获得关于如何使用它的直觉。 foldM :: Monad m => (a -> b -> m a) -> a -> [b] -> m a 在这个简单的例子中,我只返回 [Just
答案What are _mm_prefetch() locality hints?详细说明提示的含义。 我的问题是:我想要哪一个? 我正在处理一个被重复调用数十亿次的函数,其中包含一些 int 参数。
我一直在读这个article了解 gcroot 模板。我明白 gcroot provides handles into the garbage collected heap 然后 the handle
提供了一个用例: 流处理架构;事件进入 Kafka,然后由带有 MongoDB 接收器的作业进行处理。 数据库名称:myWebsite集合:用户 并且作业接收 users 集合中的 user 记录。
你好 我想更详细地了解 NFS 文件系统。我偶然发现了《NFS 图解》这本书,不幸的是它只能作为谷歌图书提供,所以有些页面丢失了。有人可能有另一个很好的资源,这将是在较低级别上了解 NFS 的良好开始
我无法理解这个问题,哪个更随机? rand() 或: rand() * rand() 我发现这是一个真正的脑筋急转弯,你能帮我吗? 编辑: 凭直觉,我知道数学答案是它们同样随机,但我忍不住认为,如果您
我是一名优秀的程序员,十分优秀!