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 app53;
- public class App53 {
- //
- public static void main(String[] args) {
- // TODO code application logic here
- // объявляем переменную типа Car
- Car c; // c - имя переменной
- // оператор new - используется для создания объекта
- c = new Car();
- // объявляем переменную типа Car и присваиваем значение
- Car c1 = new Car();
- // используем объект c1 - вызываем метод для установки цвета авто
- // используем оператор .
- c1.setColor("red");
- // выводим текущ цвет авто на экран - вызываем метод getColor
- System.out.println(c1.getColor());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement