python-CSD-kursu/python-temel/staticmethod.3.py

13 lines
319 B
Python
Raw Normal View History

2023-08-03 23:29:39 +03:00
class Sample:
def foo(self):
print('foo')
@staticmethod
def bar(self):
print('bar')
s = Sample()
s.foo() # Sample.foo(s)
s.bar(10) # geçerli, 10 burada self'e atanacak
#s.bar() # exception, çünkü self sıradan bir parametre