|
You are here |
andyjohnson.uk | ||
| | | | |
juandebravo.com
|
|
| | | | | Juan de Bravo - Personal thoughts about technology (@juandebravo) | |
| | | | |
billsaysthis.com
|
|
| | | | | Just a microsite for my periodic consulting engagements. Rails 3, Compass/Sass, jQuery, running on Heroku. Britespring.com | |
| | | | |
danielpecos.com
|
|
| | | | | Para retomar de nuevo la marcha del blog, he decidido comenzar mostrando algunos ejemplos de programación en C#. Por el momento os dejo el obligatorio programa para todo aquel que empieza con algún lenguaje. Hola Mundo! using System; namespace HolaMundo { public class HolaMundo { public static void Main (string [] args) { Console.WriteLine ("Hola Mundo!"); } } } Sencillo, ¿verdad? Tiene mucha semejanza con Java, exceptuando que las palabras reservadas difieren y que Java no posee el concepto de espacios ... | |
| | | | |
in.relation.to
|
|
| | | 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... | ||