Skip to main content

クラスメソッド.2.呼び出し

Python

py
Class01.method01(..);

中から呼ぶときは

py
self.method01(..);
cls.method01(..);

static メソッドの場合は、外からでも中からでも同じ

py
Class01.method01(..);

Swift

swift
Class01.func01()
swift
Struct01.func01()

Type method と呼ばれてる

Ruby

rb
Class01::method01(...)