7

警告: 私は 10 分間ずっと Python を学んでいるので、ばかげた質問で申し訳ありません!

次のコードを作成しましたが、次の例外が発生します。

メッセージ ファイル名 行位置 トレースバック ノード 31 例外.TypeError: このコンストラクターは引数を取りません

class Computer:

    name = "Computer1"
    ip = "0.0.0.0"
    screenSize = 17


    def Computer(compName, compIp, compScreenSize):
        name = compName
        ip = compIp
        screenSize = compScreenSize

        printStats()

        return

    def Computer():
        printStats()

        return

    def printStats():
        print "Computer Statistics: --------------------------------"
        print "Name:" + name
        print "IP:" + ip
        print "ScreenSize:" , screenSize // cannot concatenate 'str' and 'tuple' objects
        print "-----------------------------------------------------"
        return

comp1 = Computer()
comp2 = Computer("The best computer in the world", "27.1.0.128",22)

何かご意見は?

4

8 に答える 8

36

私はあなたが Java っぽいバックグラウンドを持っていると仮定するつもりなので、指摘すべき重要な違いがいくつかあります。

class Computer(object):
    """Docstrings are used kind of like Javadoc to document classes and
    members.  They are the first thing inside a class or method.

    You probably want to extend object, to make it a "new-style" class.
    There are reasons for this that are a bit complex to explain."""

    # everything down here is a static variable, unlike in Java or C# where
    # declarations here are for what members a class has.  All instance
    # variables in Python are dynamic, unless you specifically tell Python
    # otherwise.
    defaultName = "belinda"
    defaultRes = (1024, 768)
    defaultIP = "192.168.5.307"

    def __init__(self, name=defaultName, resolution=defaultRes, ip=defaultIP):
        """Constructors in Python are called __init__.  Methods with names
        like __something__ often have special significance to the Python
        interpreter.

        The first argument to any class method is a reference to the current
        object, called "self" by convention.

        You can use default function arguments instead of function
        overloading."""
        self.name = name
        self.resolution = resolution
        self.ip = ip
        # and so on

    def printStats(self):
        """You could instead use a __str__(self, ...) function to return this
        string.  Then you could simply do "print(str(computer))" if you wanted
        to."""
        print "Computer Statistics: --------------------------------"
        print "Name:" + self.name
        print "IP:" + self.ip
        print "ScreenSize:" , self.resolution //cannot concatenate 'str' and 'tuple' objects
        print "-----------------------------------------------------"
于 2008-11-23T17:09:12.270 に答える
5

Python のコンストラクタは と呼ばれ__init__ます。また、クラスのすべてのメソッドの最初の引数として「self」を使用し、それを使用してクラスのインスタンス変数を設定する必要があります。

class Computer:

    def __init__(self, compName = "Computer1", compIp = "0.0.0.0", compScreenSize = 22):
        self.name = compName
        self.ip = compIp
        self.screenSize = compScreenSize

        self.printStats()

    def printStats(self):
        print "Computer Statistics: --------------------------------"
        print "Name:", self.name
        print "IP:", self.ip
        print "ScreenSize:", self.screenSize
        print "-----------------------------------------------------"


comp1 = Computer()
comp2 = Computer("The best computer in the world", "27.1.0.128",22)
于 2008-11-23T16:44:22.493 に答える
4

Pythonの本を手に入れてください。Pythonに飛び込むのはかなり良いです。

于 2008-11-23T17:31:44.097 に答える
2

まず、こちらをご覧ください。

于 2008-11-23T16:46:08.260 に答える
2

指摘すべき点がいくつかあります。

  1. Python のすべてのインスタンス メソッドには、明示的な自己引数があります。
  2. コンストラクターは と呼ばれ__init__ます。
  3. メソッドをオーバーロードすることはできません。デフォルトのメソッド引数を使用して、同様の効果を得ることができます。

C++:

class comp  {
  std::string m_name;
  foo(std::string name);
};

foo::foo(std::string name) : m_name(name) {}

パイソン:

class comp:
  def __init__(self, name=None):
    if name: self.name = name
    else: self.name = 'defaultName'
于 2008-11-23T16:48:45.650 に答える
1

それは有効な python ではありません。

Python クラスのコンストラクターは でdef __init__(self, ...):あり、それをオーバーロードすることはできません。

できることは、引数にデフォルトを使用することです。

class Computer:
    def __init__(self, compName="Computer1", compIp="0.0.0.0", compScreenSize=17):
        self.name = compName
        self.ip = compIp
        self.screenSize = compScreenSize

        self.printStats()

        return

    def printStats(self):
        print "Computer Statistics: --------------------------------"
        print "Name      : %s" % self.name
        print "IP        : %s" % self.ip
        print "ScreenSize: %s" % self.screenSize
        print "-----------------------------------------------------"
        return

comp1 = Computer()
comp2 = Computer("The best computer in the world", "27.1.0.128",22)
于 2008-11-23T16:46:02.253 に答える
1

ああ、これらは新しい Python 開発者にとってよくある落とし穴です。

まず、コンストラクターを呼び出す必要があります。

__init__()

2 番目の問題は、クラス メソッドに self パラメータを含めるのを忘れていることです。

さらに、2 番目のコンストラクターを定義すると、Computer() メソッドの定義が置き換えられます。Python は非常に動的であり、喜んでクラス メソッドを再定義できます。

より Pythonic な方法は、パラメーターを必須にしたくない場合は、おそらくパラメーターのデフォルト値を使用することです。

于 2008-11-23T16:49:23.247 に答える
1

Python は関数のオーバーロードをサポートしていません。

于 2009-01-13T16:11:29.047 に答える