“Tipos de métodos no OOP Python” Respostas de código

Tipos de métodos no OOP Python

# 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

Tipos de métodos no OOP Python

# 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

Respostas semelhantes a “Tipos de métodos no OOP Python”

Perguntas semelhantes a “Tipos de métodos no OOP Python”

Mais respostas relacionadas para “Tipos de métodos no OOP Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código