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.ex21;
- /**
- *
- * @author student
- */
- public class Main2 {
- public static void main(String[] args) {
- // механизм исключений (основан на ООП)
- // try catch throw throws finally
- String s = "AAA";
- System.out.println("s.len=" + s.length());
- String s1 = null;
- System.out.println("s1.len=" + s1.length());
- System.out.println("OK!!!!!!!!!!!!!");
- //NullPointerException ne = null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement