Skip to content

Commit 93763f8

Browse files
authored
Update README.md
1 parent 4bb0f86 commit 93763f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ It is also a good practice to annotate overridden methods with `@Override` to ma
400400
* Difference between `StringBuffer` and `StringBuilder`?
401401
* How is a `StringBuilder` implemented to avoid the immutable string allocation problem?
402402
* What is Autoboxing and Unboxing?
403-
- Autoboxing and Unboxing is the process of automatic wrapping (putting in a box) and unwrapping (getting the value out) of primitive data types, that have "wrapper" classes. So `int` and `Integer` can (almost always) be used interchangeably in Java language, meaning a method `giveMeInt(int i) { ... }` can take `int` as well as `Integer` as a parameter.
403+
- Autoboxing and Unboxing is the process of automatic wrapping (putting in a box) and unwrapping (getting the value out) of primitive data types, that have "wrapper" classes. So `int` and `Integer` can (almost always) be used interchangeably in Java language, meaning a method `void giveMeInt(int i) { ... }` can take `int` as well as `Integer` as a parameter.
404404
* What’s the difference between an Enumeration and an Iterator?
405405
* What is the difference between fail-fast and fail safe in Java?
406406
* What is Java priority queue?

0 commit comments

Comments
 (0)