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.mycompany.ja7;
- /**
- *
- * @author Admin
- */
- public class Main {
- //
- public static void main(String[] args) {
- // объявляем переменную типа Car
- Car c1; // c1 - имя переменной, Car - тип
- c1 = null;
- // создаем новый объект - используем ключевое слово new
- c1 = new Car(); //
- Car c2;
- // объявить и присвоить
- Car c3 = new Car();
- Car c4;
- // вызываем метод на объекте c3 - используется оператор .
- double s = c3.getSpeed();
- System.out.println("s=" + s);
- System.out.println("s=" + c3.getSpeed());
- //
- System.out.println("color=" + c3.getColor());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement