1. ホーム
  2. python

[解決済み] TypeError: 1つの必須位置引数がありません: 'self'

2022-02-15 04:08:30

質問

エラーになるんだけど

Traceback (most recent call last):
  File "C:\Users\Dom\Desktop\test\test.py", line 7, in <module>
    p = Pump.getPumps()
TypeError: getPumps() missing 1 required positional argument: 'self'

いくつかのチュートリアルを調べましたが、私のコードと違うところはなさそうです。唯一考えられるのは、Python 3.3は異なるシンタックスを要求しているということです。

class Pump:

    def __init__(self):
        print("init") # never prints

    def getPumps(self):
        # Open database connection
        # some stuff here that never gets executed because of error
        pass  # dummy code

p = Pump.getPumps()

print(p)

私の理解が正しければ self は自動的にコンストラクタとメソッドに渡されます。何か間違っているのでしょうか?

どうすればいいですか?

ここでは、クラスのインスタンスを作成する必要があります。

使用する

p = Pump()
p.getPumps()

小さな例

>>> class TestClass:
        def __init__(self):
            print("in init")
        def testFunc(self):
            print("in Test Func")


>>> testInstance = TestClass()
in init
>>> testInstance.testFunc()
in Test Func