LoginSignup
0
0

More than 1 year has passed since last update.

はじめに

移植やってます。

cls (Python)

class WritableIndex(object):
    @classmethod
    def load(cls, fp):
        inst = cls()

@classmethodはRubyでいうところの特異メソッドで行けそうな気もしますが、clsは厄介そう。
上記ですと、cls()を呼んだとき、現在のクラスがインスタンス化されます。

どうする? (Ruby)

class WritableIndex
  def self.load(fp)
    inst = self.new
    inst.myprint(fp)
  end

  def myprint(args)
    print(args)
  end
end

WritableIndex.load("cls")

# cls

取り敢えずself.newで。
ちなみに30箇所で使用されている様子。

メモ

  • Python の cls を学習した
  • 道のりは遠そう
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0