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();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement