- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我正在修补类中的一个方法,我如何从覆盖方法调用覆盖方法? IE。有点像 super
例如。
class Foo
def bar()
"Hello"
end
end
class Foo
def bar()
super() + " World"
end
end
>> Foo.new.bar == "Hello World"
最佳答案
编辑 : 自从我最初写这个答案已经 9 年了,它值得做一些整容手术来保持它的最新状态。
可以看到编辑前的最后一个版本here .
您不能通过名称或关键字调用被覆盖的方法。这就是为什么应该避免猴子补丁而首选继承的众多原因之一,因为显然您可以调用被覆盖的方法。
避免猴子补丁
遗产
所以,如果可能的话,你应该更喜欢这样的事情:
class Foo
def bar
'Hello'
end
end
class ExtendedFoo < Foo
def bar
super + ' World'
end
end
ExtendedFoo.new.bar # => 'Hello World'
Foo
的创建,这是有效的对象。只需更改创建
Foo
的每个位置改为创建
ExtendedFoo
.如果您使用
Dependency Injection Design Pattern,效果会更好。 ,
Factory Method Design Pattern ,
Abstract Factory Design Pattern或类似的东西,因为在这种情况下,只有你需要改变的地方。
Foo
的创建对象,例如因为它们是由不受您控制的框架创建的(例如
ruby-on-rails),那么您可以使用
Wrapper Design Pattern :
require 'delegate'
class Foo
def bar
'Hello'
end
end
class WrappedFoo < DelegateClass(Foo)
def initialize(wrapped_foo)
super
end
def bar
super + ' World'
end
end
foo = Foo.new # this is not actually in your code, it comes from somewhere else
wrapped_foo = WrappedFoo.new(foo) # this is under your control
wrapped_foo.bar # => 'Hello World'
Foo
对象进入您的代码,您将其包装到另一个对象中,然后在代码中的其他任何地方使用该对象而不是原始对象。
Object#DelegateClass
来自
delegate
的辅助方法标准库中的库。
Module#prepend
: Mixin 前置
Module#prepend
被添加以或多或少地支持这个用例。
Module#prepend
与
Module#include
做同样的事情,除了它直接在类下面的 mixin 中混合:
class Foo
def bar
'Hello'
end
end
module FooExtensions
def bar
super + ' World'
end
end
class Foo
prepend FooExtensions
end
Foo.new.bar # => 'Hello World'
Module#prepend
在这个问题中:
Ruby module prepend vs derivation
include
使用 mixin 而不是
prepend
这样做:
class Foo
def bar
'Hello'
end
end
module FooExtensions
def bar
super + ' World'
end
end
class Foo
include FooExtensions
end
super
.然而,
Module#include
在继承层次结构中的类上方插入 mixin,这意味着
FooExtensions#bar
永远不会被调用(如果被调用,
super
实际上不会引用
Foo#bar
而是引用不存在的
Object#bar
),因为
Foo#bar
总会先被发现。
bar
方法,而不实际保留实际方法?答案在于函数式编程,正如它经常做的那样。我们将方法作为一个实际对象来持有,并且我们使用一个闭包(即一个块)来确保我们并且只有我们持有该对象:
class Foo
def bar
'Hello'
end
end
class Foo
old_bar = instance_method(:bar)
define_method(:bar) do
old_bar.bind(self).() + ' World'
end
end
Foo.new.bar # => 'Hello World'
old_bar
只是一个局部变量,它会在类体的末尾超出范围,并且不可能从任何地方访问它,即使使用反射!从
Module#define_method
接受一个块,并且块在它们周围的词法环境上关闭(这就是我们在这里使用
define_method
而不是
def
的原因),它(并且只有它)仍然可以访问
old_bar
,即使它已经超出范围。
old_bar = instance_method(:bar)
bar
方法转化为
UnboundMethod
方法对象并将其分配给局部变量
old_bar
.这意味着,我们现在有办法坚持
bar
即使在它被覆盖之后。
old_bar.bind(self)
self
。在 ruby 。换句话说:一个方法总是知道它被调用的对象是什么,它知道它的
self
是。但是,我们直接从一个类中获取方法,它怎么知道它的
self
是?
bind
我们的
UnboundMethod
首先到一个对象,这将返回一个
Method
然后我们可以调用的对象。 (
UnboundMethod
不能被调用,因为他们不知道他们的
self
不知道该怎么做。)
bind
它到?我们只是
bind
对我们自己来说,这样它的行为就会和原来的完全一样
bar
将有!
Method
这是从
bind
返回的.在 Ruby 1.9 中,有一些漂亮的新语法(
.()
),但如果你在 1.8 上,你可以简单地使用
call
方法;就是这样
.()
无论如何都会被翻译成。
alias_method
链
class Foo
def bar
'Hello'
end
end
class Foo
alias_method :old_bar, :bar
def bar
old_bar + ' World'
end
end
Foo.new.bar # => 'Hello World'
Foo.new.old_bar # => 'Hello'
old_bar
污染了命名空间。方法。这个方法会出现在我们的文档中,它会出现在我们 IDE 的代码完成中,它会在反射期间出现。此外,它仍然可以调用,但大概是我们猴子修补了它,因为我们首先不喜欢它的行为,所以我们可能不希望其他人调用它。
Module#alias_method_chain
流行起来。 .
Module#prepend
来演示它上面的例子:
class Foo
def bar
'Hello'
end
end
module ExtendedFoo
module FooExtensions
def bar
super + ' World'
end
end
refine Foo do
prepend FooExtensions
end
end
Foo.new.bar # => 'Hello'
# We haven’t activated our Refinement yet!
using ExtendedFoo
# Activate our Refinement
Foo.new.bar # => 'Hello World'
# There it is!
Module#prepend
,您可能偶尔会在较早的讨论中看到多种不同的想法。所有这些都归入
Module#prepend
.
class Foo
def bar:before
# will always run before bar, when bar is called
end
def bar:after
# will always run after bar, when bar is called
# may or may not be able to access and/or change bar’s return value
end
end
bar
的执行方法。
bar
bar:after
内的返回值.也许我们可以(ab)使用
super
关键词?
class Foo
def bar
'Hello'
end
end
class Foo
def bar:after
super + ' World'
end
end
prepend
使用调用
super
的覆盖方法创建 mixin在方法的最后。同样,after 组合子等价于
prepend
使用调用
super
的覆盖方法创建 mixin在方法的最开始。
super
之前和之后做一些事情,您可以拨打
super
多次,同时检索和操作
super
的返回值,使得
prepend
比方法组合器更强大。
class Foo
def bar:before
# will always run before bar, when bar is called
end
end
# is the same as
module BarBefore
def bar
# will always run before bar, when bar is called
super
end
end
class Foo
prepend BarBefore
end
class Foo
def bar:after
# will always run after bar, when bar is called
# may or may not be able to access and/or change bar’s return value
end
end
# is the same as
class BarAfter
def bar
original_return_value = super
# will always run after bar, when bar is called
# has access to and can change bar’s return value
end
end
class Foo
prepend BarAfter
end
old
关键词
super
的新关键字,它允许您以相同的方式调用被覆盖的方法
super
让你调用重写的方法:
class Foo
def bar
'Hello'
end
end
class Foo
def bar
old + ' World'
end
end
Foo.new.bar # => 'Hello World'
old
的方法,您将无法再调用它!
super
在
prepend
中的覆盖方法中ed mixin 与
old
基本相同在这个提议中。
redef
关键词
def
单独,我们添加了一个新的关键字来重新定义方法。这是向后兼容的,因为目前的语法无论如何都是非法的:
class Foo
def bar
'Hello'
end
end
class Foo
redef bar
old + ' World'
end
end
Foo.new.bar # => 'Hello World'
super
的含义。内
redef
:
class Foo
def bar
'Hello'
end
end
class Foo
redef bar
super + ' World'
end
end
Foo.new.bar # => 'Hello World'
redef
在一个方法中等效于覆盖一个
prepend
中的方法ed混合。
super
在覆盖方法中的行为类似于
super
或
old
在这个提议中。
关于ruby - 当猴子修补实例方法时,您可以从新实现中调用覆盖的方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4470108/
有没有一种方法可以使用标准类型构造函数(例如 int、set、dict、list、tuple 等)以用户定义的方式将用户定义类的实例强制转换为其中一种类型?例如 class Example:
我知道这个问题在Stackoverflow中有很多问题,但是即使有很多答案,这些答案也帮不了我什么,也没有找到答案。 在我的WebAPP中,它可以正常工作,但是当我将其转换为API时,它失败了(主题标
这个问题已经有答案了: Why does the ternary operator unexpectedly cast integers? (3 个回答) 已关闭 9 年前。 最近遇到一个Java的陷
我尝试使用 FirebaseApp.configure() 配置 Firebase,但遇到以下崩溃: *** Terminating app due to uncaught exception 'c
我有一个自连接员工实体类,其中包含与其自身相关的 id、name 和 ref 列。我想创建它的新实例并将其保存到数据库。 首先我创建了一个 Employee 类的实例并将其命名为 manager。然后
我有一个用于添加新公寓的表单,在该表单中我有一个下拉列表,用户可以在其中选择负责的人员。 显然,当您从下拉列表中选择并尝试保存公寓时,我的应用程序认为该人已被修改。它给了我下面的错误,指示我应该首先保
从 Visualforce 页面,我需要检索我们组织的 salesforce 实例的 URL,而不是 Visual Force URL。 例如我需要https://cs1.salesforce.com
我遇到了一些可能的问题答案,但这是关于从 Hibernate 3.4.0GA 升级到 Hibernate 4.1.8 的问题。所以这曾经在以前的版本下工作,我已经四处搜索了为什么它在这个新版本中出现了
似乎一遍又一遍地问这个问题,我仍然找不到解决我问题的答案。我在下面有一个域模型。每个新创建或更新的“安全用户”都需要我确保其具有配置文件,如果没有,则创建一个新的配置文件并分配给它。 配置文件的要求相
我很难调试为什么 JPA 不级联我的 @ManyToMany 关系。我发现的所有答案都与缺少级联语句有关。但我确实拥有它们并且仍然得到: Caused by: org.hibernate.Transi
Play 服务 API 表明有一个叫做 Instance ID 的东西 但是,在 Android Studio 中包含以下内容后,我无法导入 InstanceID 类 compile "com.goo
我正在使用 Seam 框架。我有 2 个实体: 请求.java @Entity @Table(name = "SRV_REQUEST") public class Request { private
This question处理构建一个适当的Monad来自单子(monad)的实例,但仅在某些约束下 - 例如Set .诀窍是将其包装成 ContT ,它将约束推迟到包装/展开其值。 现在我想对 Ap
我正在尝试执行此查询: StringBuffer sb = new StringBuffer(); sb.append("select p from PointsEntity p " + "where
我试图了解是否可以更改我的 hibernate 配置并使用单个 MySQL 实例(而不是我当前拥有的多个 MySQL 实例): 我有一个使用 hibernate 的 Java 应用程序,与 2 个模式
我有一个选项卡滑动布局,其中包括四个选项卡,每个选项卡都有自己的布局和 fragment ,在我的主要 Activity 布局中,viewpager 参与更改选项卡。特定 View (选项卡)在应用程
我看到很多帖子声称他们正在运行 MySql 的 RDS 实例,但无法连接到该实例,但我没有运行 RDS。 我使用 EC2 实例来托管我的 WordPress 博客,该博客是使用 Web 平台安装程序安
因为我在我的 ec-2 实例上的 python 虚拟环境中运行应用程序( Airflow ),并且我想在同一个 ec2 实例上的默认 python 环境中运行命令,所以我认为 ssh 到我自己的实例更
这个问题已经有答案了: How to fix the Hibernate "object references an unsaved transient instance - save the tra
例子: run APP1 .. ... run APP1 ... run APP2 如何在 APP2 中对 Vue 说我需要调用 APP1?
我是一名优秀的程序员,十分优秀!