December 2018
Beginner
623 pages
13h 13m
English
In Chapter 4, a lot of Java code was written, but when designing classes, only the most simple data types were used: a few numeric ones and text. In the JDK, a lot of data types are declared for a multitude of purposes: for modelling calendar dates, for representing multiple types of numeric, for manipulating texts, collections, files, database connections, and so forth. Aside from JDK, there are libraries created by other parties that provide even more functionality. But the data types provided by the JDK are fundamental ones, the bricks every Java application is built from. Of course, depending ...