Top 13 Quotes for Java Developers
Quote 1: Avoid creating unnecessary objects and always prefer to do Lazy Initialization
Object creation in Java is one of the most expensive operation in terms
of memory utilization and performance impact. It is thus advisable to
create or initialize an object only when it is required in the code.
01
02
03
04
05
06
07
08
09
10
11
12
13
| public class Countries { private List countries; public List getCountries() { //initialize only when required
Advertise on APSense
This advertising space is available.
Post Your Ad Here
Join APSense Today
|
Comments