Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.spec;
- import com.spec.model.Car;
- public class Main {
- //
- public static void main(String[] args) {
- // объявление переменной типа Car
- //Ctrl+Shift+I
- Car c1; // c1 - имя переменной, Car
- // создание объекта типа Car
- // для создания объекта используем ключевое слово new
- c1 = new Car(); // new Car()
- // объявляем переменную и присваиваем значение-объект данной переменной
- Car c2 = new Car();
- // использование объекта - вызов метода - используем оператор точка
- String color1 = c1.getColor();
- System.out.println("color1=" + color1);
- //
- c1.setColor("red");
- System.out.println("color1=" + c1.getColor());
- System.out.println("c1.speed=" + c1.getSpeed());
- // создаем новый авто - используем конструктор класса с параметром
- Car c3 = new Car("blue");
- System.out.println("color.c3=" + c3.getColor());
- //
- c3.speedUp(10);
- System.out.println("c3.speed=" + c3.getSpeed());
- c3.speedUp(20);
- System.out.println("c3.speed=" + c3.getSpeed());
- c3.speedUp(40);
- System.out.println("c3.speed=" + c3.getSpeed());
- c3.speedUp(-10);
- System.out.println("c3.speed=" + c3.getSpeed());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement