News

Method references: A primer. My previous Java 101 tutorial introduced lambda expressions, which are used to define anonymous methods that can then be treated as instances of a functional interface.
Java constructor overloading example. Imagine a simple Java class that represents a point on a Cartesian plane. The class has two properties: x and y. The following code is an example. public class ...