Answer the question
In order to leave comments, you need to log in
Can anyone explain the definitions?
Can anyone explain with an example what is an attribute, an instance of a class, a method, an object?
Answer the question
In order to leave comments, you need to log in
class Car:
max_speed = '' # атрибут от же свойство свойство
def ride(self, speed, distance): # метод
self.distance = distance
self.speed = speed
car = Car() # объект, он же экземпляр класса
car.max_speed = 120
car.ride()
class A {
public $name = 123 ; // Атрибут класса
public function sayMyName() { // метод
echo $this->name;
}
}
$a = new A(); // $a экземпляр класса
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question