Explore >> Select a destination


You are here

www.zend.com
| | www.jrebel.com
5.3 parsecs away

Travel
| | Using SOLID principles in Java development can help keep the primary value of your software high. Learn more about object oriented design principles, here.
| | www.jrebel.com
6.6 parsecs away

Travel
| | In this blog, we take a look at the Kotlin language, how it's used, how it compares to Java, and how it works with the Android OS.
| | www.jrebel.com
7.0 parsecs away

Travel
| | What is Maven? Find out the answer, along with how MVN is used, how it works, and compare the benefits and popularity ofMaven, Gradle, and Ant.
| | componenthouse.com
128.0 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...