gpt4 book ai didi

ruby - 我如何从 Ruby 中的 Pathname 继承?

转载 作者:太空宇宙 更新时间:2023-11-03 18:28:30 24 4
gpt4 key购买 nike

我有一个 RemoteFile 继承自 Pathname

class RemoteFile < Pathname
end

我创建一个远程文件,并获取它的父级

    irb> RemoteFile.new('.')
=> #<RemoteFile:.>
irb> RemoteFile.new('.').parent
=> #<Pathname:..>

除了猴子修补 Pathname 中的十几个方法之外,还有什么方法可以让 Pathname 返回 RemoteFiles 吗?如果 Pathname 返回 self.class.new 类型的对象不是更好吗?

最佳答案

到目前为止,这对我有用:

class Winpath < Pathname
def to_s
super.tr("/", "\\")
end

def +(other)
self.class.new super(other)
end
end

似乎 +(other) 是您需要重载的唯一函数。

关于ruby - 我如何从 Ruby 中的 Pathname 继承?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7451038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com