Java Reflection Library Pt. 1

In this series I want to take a deep dive into the realm of the Java reflection library. This library contains features that can give you immense power when used correctly. However, as we all know, with great power comes great responsibility. This is my fair warning that I am Read more

Java Arrays!

If a normal variable is like a motorcycle, then an array is like a big city bus. It is made specifically to hold many items. Arrays in Java are similar to arrays in any other language. They need to have a type (i.e. int, String, char, double, etc..), and you Read more

Java Variables

Hey Everyone, in my last tutorial I showed you how to setup a Java file and print “Hello World” to the console. Now lets learn about variables! In Java, every variable must have a type. The different types are: byte (number, 1 bit), short(number, 2 bytes), int (interger, 4 bytes), Read more

Java “Hello World!”

Hey! Welcome back. Lets learn how to print to the console with Java. 1. Open up NetBeans and click the button that looks like a folder to create a new project environment. 2. Make sure “Java” is selected then hit continue. 3. Now name your project something meaningful and make Read more