Explore >> Select a destination


You are here

endoflineblog.com
| | ryanharter.com
2.7 parsecs away

Travel
| | In my last article, I gave a basic introduction to AutoValue, the code generating annotation processor that makes immutable value types in Java easy. Now I'd like to take a bit of a deeper look at AutoValue and how it works. Compile Time Annotation Processing First things first, AutoValue is a compile time annotation processor. This means that it only runs when you compile your code, as opposed to when your app is running.
| | www.interviewbit.com
3.4 parsecs away

Travel
| | Table Of Contents show What is Java 8? Top Java 8 Features With Examples Functional Interfaces And Lambda Expressions forEach() Method In Iterable Interface...
| | benjiweber.co.uk
6.0 parsecs away

Travel
| | A while back I promised to follow up from this tweet to elaborate on the fun I was having with Java's new Records (currently preview) feature. Records, like lambdas and default methods on interfaces are tremendously useful language features because they enable many different patterns and uses beyond the obvious. Java 8 brought lambdas, with... Read more ยป
| | connorberry.com
21.4 parsecs away

Travel
| Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);...