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.Student;
- /**
- *
- * @author Admin
- */
- public class Main {
- //
- public static void printStudent(Student s){
- if(s!=null){
- System.out.println("s.name=" + s.getName());
- System.out.println("s.age=" + s.getAge());
- }
- }
- // main + tab
- public static void main(String[] args) {
- // Ctrl+Shift+I - хот кей для добавления оператора импорта
- Student s;
- // что можно присвоить переменной s - ???
- // 1) null - ссылка на пустоту
- s = null;
- System.out.println("s=" + s);
- // 2) можем присвоить объект
- // s = new Student();
- // //
- // Student s2 = new Student();
- // // выводим имя студента - вызвыаем метод getName на объекте s2
- // System.out.println("s2.name=" + s2.getName());
- // System.out.println("s2.getAge=" + s2.getAge());
- s = new Student("Alex", 10);
- Student s2 = new Student("Nick", 20);
- // что мы можем сделать с объектом s2 ???
- // вывести на экран студента (s2)
- //System.out.println("s2=" + s2);
- System.out.println("s2=" + s2.getName() + "_" + s2.getAge());
- //
- Student s3 = null;
- // вывести на экран имя и возраст студента s3
- // boolean res = (s == null);
- // res = (s != null);
- if(s3!=null){
- System.out.println("s3=" + s3.getName() + "_" + s3.getAge());
- }
- printStudent(s3);
- System.out.println("OK");
- // сравнить двух студентов
- //boolean result = s > s2;
- // int i = 10;
- // System.out.println("i=" + i);
- // boolean result = i > 1;
- // System.out.println("result=" + result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement