Показаны различия между двумя версиями страницы.
Предыдущая версия справа и слеваПредыдущая версияСледующая версия | Предыдущая версия | ||
theory:oop_c [2024/11/30 12:13] – labuser30 | theory:oop_c [2024/12/04 12:44] (текущий) – labuser30 | ||
---|---|---|---|
Строка 36: | Строка 36: | ||
private: | private: | ||
String color; | String color; | ||
- | | + | |
- | | + | |
int odo; | int odo; | ||
| | ||
public: | public: | ||
- | Car(String _color, int _fuel, | + | Car(String _color, int _fuel, |
color = _color; | color = _color; | ||
fuel = _fuel; | fuel = _fuel; | ||
Строка 47: | Строка 47: | ||
odo = 0; | odo = 0; | ||
} | } | ||
- | | + | |
void go(int dist) { | void go(int dist) { | ||
odo += dist; | odo += dist; | ||
- | fuel -= consumption / 100 * dist; | + | fuel -= consumption / 100.0 * dist; |
} | } | ||
- | | + | |
return fuel; | return fuel; | ||
} | } | ||
Строка 71: | Строка 71: | ||
Методы класса Car | Методы класса Car | ||
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
+ | |||
+ | |||
+ | Сразу возникает вопрос, | ||
- | Сразу возникает вопрос, а что за метод __init__. Это //конструктор// — функция, | + | Класс это |
- | Также непонятно что такое self в параметрах всех функций и при обращении к свойствам. self — это ссылка объекта на самого | + | Ключевые слова '' |
- | Как видно мы описали абстрактно автомобиль. У любого автомобиля есть цвет, есть одометр, | + | Как видно мы описали абстрактно автомобиль. У любого автомобиля есть цвет, есть одометр, |
<code arduino> | <code arduino> | ||
- | MyCar = Car('Black', 50, 10) | + | Car MyCar("Black", 50, 10); |
- | BrotherCar = Car('White', 60, 15) | + | Car BrotherCar("White", 60, 15); |
</ | </ | ||
- | Мы создали два объекта автомобиля '' | + | Мы создали два объекта автомобиля '' |
<code arduino> | <code arduino> | ||
- | print(MyCar.get_odo()) | + | Serial.println(MyCar.getOdo()); |
- | print(MyCar.get_fuel()) | + | Serial.println(MyCar.getFuel()); |
</ | </ | ||
Строка 96: | Строка 99: | ||
< | < | ||
0 | 0 | ||
- | 50 | + | 50.00 |
</ | </ | ||
Мой автомобиль еще ничего не проехал и топлива не потратил нисколько. Теперь проедем 20 километров и еще 10. | Мой автомобиль еще ничего не проехал и топлива не потратил нисколько. Теперь проедем 20 километров и еще 10. | ||
<code arduino> | <code arduino> | ||
- | MyCar.go(20) | + | MyCar.go(20); |
- | MyCar.go(10) | + | MyCar.go(10); |
</ | </ | ||
И повторим запросы пробега и уровня топлива | И повторим запросы пробега и уровня топлива | ||
<code arduino> | <code arduino> | ||
- | print(MyCar.get_odo()) | + | Serial.println(MyCar.getOdo()); |
- | print(MyCar.get_fuel()) | + | Serial.println(MyCar.getFuel()); |
</ | </ | ||
Строка 114: | Строка 117: | ||
< | < | ||
30 | 30 | ||
- | 47.0 | + | 47.00 |
</ | </ | ||
Строка 120: | Строка 123: | ||
<code arduino> | <code arduino> | ||
- | BrotherCar.go(15) | + | BrotherCar.go(15); |
- | print(BrotherCar.get_odo()) | + | Serial.println(BrotherCar.getOdo()); |
- | print(BrotherCar.get_fuel()) | + | Serial.println(BrotherCar.getFuel());) |
</ | </ | ||