bharal
Resultados
1
preguntas formuladas por
bharal
¿Por qué puedo arrojar nulo en Java? [duplicar]
7
respuestas
318
votos
37.2k
vistas
Al ejecutar esto: public class WhatTheShoot { public static void main(String args[]){ try { throw null; } catch (Exception e){ System.out.println(e instanceof NullPointerException); System.out.println(e instanceof FileNotFoundException); } } } La