有
class Object
alias :old_initialize :initialize
pause_warnings
def initialize
old_initialize
print "BOOM"
end
resume_warnings
end
然后
class Foo < SomeJavaClass
def initialize
super()
end
end
为什么,当我创建一个 Foo 对象时,它不打印?
pause_warnings
和 resume_warnings
只需修改 $VERBOSE
最佳答案
您对使用模块有何看法?
module MyModule
def self.included base
class << base
alias_method :old_new, :new
define_method :new do |*args| # You can also use `def new(*args)` if you don't mind the scope gate
pause_warnings
old_new(*args).tap do |instance|
print "BOOM"
resume_warnings
end
end
end
end
end
用法如下所示:
class Foo < SomeJavaClass
include MyModule
end
一些小笔记:
1) 因为我使用 Rubinius,所以我无法在 JRuby 上测试它。
2)行为略有不同。在您的代码中,您暂停警告,定义初始化方法,然后恢复警告。在我的代码中,我暂停警告、创建对象并恢复警告。这意味着警告将在您的代码中暂停/恢复一次(在类定义上),并且警告将在我的代码中多次暂停/恢复(在对象创建上)。我不确定这里的正确行为是什么。如果您想要相同的行为,只需将 pause/resume 警告移动到 define_method 块的上方/下方(而不是在它内部)。
3) 您的代码为对象分配内存,然后调用您的 initialize 方法。我的代码在为新对象分配内存之前执行代码。
关于java - 如何覆盖扩展 Java 类的 Ruby 类的构造函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24027272/