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.ex16;
- public class Main5 {
- //
- public static void printArray(int[] arr){
- for (int i = 0; i < arr.length; i++) {
- System.out.println("arr[i]=" + arr[i]);
- }
- }
- //
- public static void main(String[] args) {
- // массив целых чисел
- int[] array;
- //
- array = new int[10];
- array = null; // null литерал (ссылка на пустоту)
- String s = null;
- // провекрка на null
- if(array!=null){
- System.out.println("array НЕ null!!!");
- }else{
- System.out.println("array ссылается на null!!!");
- }
- // выводим первый элемент массива array
- if(array!=null){
- System.out.println("array[0]=" + array[0]);
- }
- //
- //printArray(array);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement