“Rodzaje metod w Pythonie Oop” Kod odpowiedzi

Rodzaje metod w Pythonie Oop

# Class Method Implementation in python 
class Student:
    name = 'Student'
    def __init__(self, a, b):
        self.a = a
        self.b = b 
    
    @classmethod
    def info(cls):
        return cls.name

print(Student.info())
Lazy Louse

Rodzaje metod w Pythonie Oop

# Static Method Implementation in python
class Student:
    name = 'Student'
    def __init__(self, a, b):
        self.a = a
        self.b = b 
    
    @staticmethod
    def info():
        return "This is a student class"

print(Student.info())
Lazy Louse

Odpowiedzi podobne do “Rodzaje metod w Pythonie Oop”

Pytania podobne do “Rodzaje metod w Pythonie Oop”

Więcej pokrewnych odpowiedzi na “Rodzaje metod w Pythonie Oop” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu