/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.ambiera.com
| | componenthouse.com
5.3 parsecs away

Travel
| | I wanted tocompare how Java, C++ and C perform whenreading a text file line by line and printing the output. I've implemented some possibilities and, at the end, we can compare the speed of each execution. Java 7 version (BufferedReader) import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Main7 { private static final...
| | www.graalvm.org
3.6 parsecs away

Travel
| | GraalVM is an advanced JDK with ahead-of-time Native Image compilation.
| | in.relation.to
5.2 parsecs away

Travel
| | Java 9 comes with a new feature very useful to library authors: multi-release JARs (JEP 238). A multi-release JAR (MR JAR) may contain multiple variants of one and the same class, each targeting a specific Java version. At runtime, the right variant of the class will be loaded automatically, depending on the Java version being used. This allows library authors to take advantage of new Java versions early on, while keeping compatibility with older versions at the same time. If for instance your library pe...
| | gist.github.com
15.6 parsecs away

Travel
| GitHub Gist: instantly share code, notes, and snippets.