Installing IntelliJ IDE On Raspberry Pi (Java / Raspberry Pi)

IntelliJ IDEA splash screen

With my adventures looking at Java I have also been using a different IDE (Integrated Development Environment) called IntelliJ on my Macbook. However I also want to look at using Java on my Raspberry Pi. The Raspbian OS (Stretch) comes with a Java IDE called BlueJ, which is designed around Java and supporting beginners to Java. … Continue reading Installing IntelliJ IDE On Raspberry Pi (Java / Raspberry Pi)

Methods (Java)

Methods in Java

Continuing on with my learnings about Java , today I am discussing methods. Within the public class there is a main method, which can then be used to call on other methods. The other methods can be named and defined in any order and then called by the main method in the order they are required. … Continue reading Methods (Java)