Java Basics – The Renegade Coder (original) (raw)
link to Java Basics Series Review
Looks like we're ready to wrap up our Java Basics series with a review. In this final lesson, we'll take what we've learned to create a program which grades tests.
link to Readability and Style in Java
When it comes to writing code, it's important to have some empathy for your teammates by focusing on readability and style.
link to Loop Syntax and Design in Java
Loop Syntax and Design in Java
Sometimes you want a chunk of code to be run more than once. Rather than copying and pasting it a set number of times, why not dump it into a loop? In this tutorial, we cover Java looping mechanisms.
Errors in code are inevitable. The challenge as a developer is to make sure bugs don't make their way into production code. Fortunately, JUnit testing can be used to minimize the risk of bugs.
link to Control Flow Syntax and Design in Java
link to Class Structure Introduction in Java
Class Structure Introduction in Java
This tutorial focuses on overall class structure using the classic "Hello World" example. The topics covered include the main method as well as compilation and execution.