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

16 lines
257 B
Python
Raw Normal View History

2023-08-03 20:29:39 +00: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