java
3 Articles
-
Data objects for the lazy: A function to auto implement a Java interface
One of the things I like about a language like Scala is how little you have to type to get a data class with getters and setters for each field.
Hannes de Jager -
Using COM from Java via JNA
According to the COM spec a COM interface pointer is just a pointer to a pointer that points to an array of function pointers.
Hannes de Jager -
Transforming an Iterator over X into an Iterator over Y in Java 5
I recently got exited about some new uses for an old design pattern, the Iterator.
Hannes de Jager