...
83
0.0 (0)
R. ..
R. ..
This flashcard set covers advanced Java programming concepts, focusing on exceptions, streams, and concurrent programming. It delves into methods, classes, and interfaces, explaining how to handle exceptions, work with streams, and manage objects. The set is particularly useful for developers preparing for a Java certification exam, as it provides detailed insights into Java's exception handling, stream operations, and concurrent programming techniques.
Cartes-fiches
83
Utilisateurs
1
Langue
Anglais
Catégorie
Informatique
Niveau
Autres
Créé / Mis à jour
02.05.2019 / 03.05.2019
-
- 1 / 83
-
Cartes-fiches
is it safe to use inputsream.available() to check if a stream is EOF?
NO! Use the specific strategies for each kind of stream
How is a serialized object created?
- Java calls the first non-arg constructor for the first nonserializable parent class, skipping the constructors of all serialized classes in between!
- Static variables are ignored
- default intializers (eg private String myField = "123" and {}) are ignored
What is special about the print, println, printf and format methods found on the PrintStream/PrintWriter classes?
They do not throw an exception! The checkError() method can be used for that instead