Learn Java: The ABC's of Java
Learn Java: The ABC's of Java Let's get right to it and explore a sample list of ABC's to support our learning of Java. A is for Arrays. You can create simple one or two dimensional arrays in Java that allow you to keep a simple list of things. A is also for algorithms, as algorithms (simple step by step processes of how you want your code to work in plain english) are the beginning of a great app. A is also for abstraction because java code is a gateway into building real world capabilities that are "real enough" to learn and play and solve problems, and the art of coding only what you need to for a purpose is important. B is for Built in capabilities and functions. This allows you to do so much with pure java, before you worry about any dependencies or even any imports, and these solve many, many problems for you. Each data structure in java also has built in functions that help you do useful things like check its length. B is also for bytecode, whi...