- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
在Metaprogramming Ruby 2在第 2 章的“Refinements”部分,我找到了以下 Ruby 代码:
class MyClass
def my_method
"original my_method()"
end
def another_method
my_method
end
end
module MyClassRefinement
refine MyClass do
def my_method
"refined my_method()"
end
end
end
using MyClassRefinement
MyClass.new.my_method # => "refined my_method()"
MyClass.new.another_method # => "original my_method()" - How is this possible?
据作者说:
However, the call to
another_method
could catch you off guard: even if you callanother_method
afterusing
, the call tomy_method
itself happens beforeusing
— so it calls the original, unrefined version of the method.
这完全把我绊倒了。
为什么 MyClass.new.another_method
打印“original my_method()”,因为它是在 using MyClassRefinement
之后使用的,作者在这里想表达什么?
谁能提供更直观/更好的解释?
谢谢。
最佳答案
我能找到的最好的解释来自 the docs :
Refinements are lexical in scope. Refinements are only active within a scope after the call to
using
. Any code before theusing
statement will not have the refinement activated.
这意味着您的优化方法必须在调用 using
之后的某处调用.调用方法的实际位置才是最重要的,而不是调用方法的方式或调用方法的位置。
这是发生了什么。
using
即 using MyClassRefinement
激活 my_method
细化。 MyClass.new.my_method
被执行。When looking up a method for an instance of
class C
Ruby checks:
- If refinements are active for
C
, in the reverse order they were activated
- The prepended modules from the refinement for
C
- The refinement for
C
- The included modules from the refinement for
C
- The prepended modules of
C
C
- The included modules of
C
my_method
返回细化的代码 "refined my_method()"
MyClass.new.another_method
被执行。another_method
不是细化,所以 Ruby 寻找 another_method
在类里面MyClass
并找到它。another_method
, 方法 my_method
找到并调用。using
在线之上(即物理上之前),其中 my_method
被调用。 Ruby 继续寻找 my_method
在类里面MyClass
并找到它。my_method
从类方法返回代码 "original my_method()"
.
我们可以做一个简单的比较。假设我有一个隔离的 file.rb
使用以下代码:
puts puppy
puppy = 'waggle'
puppy
在定义之前不能使用。该变量是词法范围的,其使用取决于其定义在隔离的 file.rb
中的位置。 .
类似地,细化只有通过using
激活后才能被调用。在前一行(或源代码文件中物理上的某个位置)。细化为 lexically scoped .
In languages with lexical scope (also called static scope), name resolution depends on the location in the source code and the lexical context, which is defined by where the named variable or function is defined...
Lexical resolution can be determined at compile time, and is also known as early binding, while dynamic resolution can in general only be determined at run time, and thus is known as late binding.
this article 的最后一节讨论了您关于改进的具体问题。
。作者还解释了 using
语句在文件中的物理位置决定了细化是否处于事件状态。
关于Ruby 改进陷阱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46623706/
正如问题所说,C++ 程序员在转向 Java 时面临哪些常见/主要问题?我正在寻找一些广泛的主题名称或示例以及工程师必须进行的日常调整。然后我可以去深入阅读这个。 我对多年来使用 C++ 并不得不使用
我们正在准备发布一个在过去一年中一直在开发的大型网络应用程序。我们即将开始集成 ActiveMerchant 的过程,以处理该服务的经常性订阅费用。 我正在寻找关于考虑到我们的要求(如下所列)的最佳实
您陷入过哪些 Powershell 陷阱? :-) 我的是: # ----------------------------------- function foo() { @("text")
对于商业数据库而言,数据库升级是一个优先级很高的事情,有版本升级路线图,有相应的补丁,而且对于方案还有一系列的演练,显然是一场硬仗。而在MySQL方向上,升级这件事情就被淡化了许多,好像只能证明它的
Android 新增了 AsyncLayoutInflater类到他们的支持库版本 24.0 和更高版本,并且可以在 Android SDK 4.0 或更高版本(几乎所有可用的设备)中使用。 根据 A
作为一名刚接触 Vala 的程序员,您对刚接触该语言的人的第一条建议是什么? 最佳答案 这很大程度上取决于您的背景。如果您来自 C/C++/Java,最好的建议是学习函数式编程。 Vala 支持真正的
作为 Spring 世界的新手,我认为如果有一个社区 Wiki 页面列出基于 Spring 的项目中常见的陷阱会很好。 这些包括: 被误解的概念 在 Spring 3.X 中不再推荐的 Spring
我正在开发一个脚本来管理一些陷阱。一开始我只用这段代码管理 INT 和 SIGTSTP,它工作得很好: #!/bin/bash function capture_traps() { echo
bash 中是否可以在函数退出时调用某些命令。我的意思是: function foo { # something like this maybe? trap "echo \"exit
我们在我们的域中托管了一个应用程序。所有用户都需要先通过 POST 表单登录。登录后,表单会自动重定向到我们网站上的仪表板页面。 是否可以允许一些客户托管他们自己的登录表单(在他们的网站上),然后发布
我有一个无窗口计时器(没有 WM_TIMER),它只在给定的时间段过去后触发一次回调函数。它作为 SetTimer()/KillTimer() 实现。时间段足够小:100-300 毫秒。 对于每个如此
我使用 Java 大约一个月了,总体而言仍然是编程方面的业余爱好者,所以如果我有什么不对的地方,请随时纠正我。也许我会提供一些多余的细节,但我现在很困惑,无法决定什么才是重要的。 因此,我一直在开发多
我正在开发一个需要使用 FileSystemWatcher 类的 C# 程序,以便在创建新文件时通知它。作为初始化的一部分,程序会扫描目录,以便处理其中已存在的任何文件。一切正常。 但是,在与另一位开
下面材料整理自Internet&著作。 STL中的容器按存储方式分为两类,一类是按以数组形式存储的容器(如:vector 、deque);另一类是以不连续的节点形式存储的容器(如:list
我正在使用 NuGet 包 Polly实现捕获故障转移 SQL 异常的重试逻辑。我在 Azure 中设置了 SQL Server Always On 高可用性。 我不想捕获所有 SQL 异常(这是不正
在编写 Scala RemoteActor 代码时,我注意到了一些陷阱: 必须设置 RemoteActor.classLoader = getClass().getClassLoader() 以避免“
出于某种原因,当我针对不存在的文件运行以下脚本时,我的脚本没有捕获异常。我基于我在网上找到的示例中的代码,但它似乎对我不起作用。 我将不胜感激有关如何解决此问题的任何提示或指示。 注意:在下面的例子中
我正在尝试从 R 调用 winBUGS 来估计逻辑回归。我正在使用以下代码: # Directorio de trabajo setwd("~/3 Diplomado/7 Bayesiana/8t1"
我正在尝试从 R 调用 winBUGS 来估计逻辑回归。我正在使用以下代码: # Directorio de trabajo setwd("~/3 Diplomado/7 Bayesiana/8t1"
我正在使用 ctypes 包装一个大型 C 库。 ctypesgen生成了包装代码(与我自己的做法相差不远)。作为包装 C 结构的 ctypes 的一部分,它们被制作为对象,其中一些在 C 中具有“s
我是一名优秀的程序员,十分优秀!