Artima Weblogs |
Weblogs Forum |
Bloggers
|
Sponsored Link •
|
Artima Weblogs
A Community of Software Thinkers |
|
Artima Bloggers
Aahz Jans Aasman B. Scott Andersen Eric Armstrong Ken Arnold Dale Asberry Dave Astels Arash Barirani Matt Bauer Charles Bell Berco Beute Geert Bevin Nitin Borwankar Vladimir Ritz Bossicard Rahul Chaudhary Bob Clancy James O. Coplien Ward Cunningham Andy Dent Christopher Diggins Bruce Eckel Ted Farrell Michael Feathers Elisabeth Freeman Eric Freeman Matt Gerrans David Goodger Gabe Grigorescu Rix Groenboom Cees de Groot Philipp Haller Peter Hansen David Heinemeier Hansson Kevlin Henney Steve Holden Cay Horstmann Ron Jeffries Mark Johnson Greg Jorgensen Heinz Kabutz Rick Kitts Kirk Knoernschild Andrew Koenig Klaus Kreft Sean Landis Angelika Langer Jakob Eg Larsen Josh Long Howard Lovatt Robert C. Martin John McClain Eamonn McManus Jeremy Meyer John D. Mitchell Brian Murphy Sean Neville Nancy Nicolaisen Martin Odersky Vlad Patryshev Johan Peeters Carlos Perez Ken Pugh Eric S. Raymond Ian Robertson Guido van van Rossum Alberto Savoia Jerome Scheuring Richard Hale Shaw Calum Shaw-Mackay Jack Shirazi Michele Simionato Van Simmons Frank Sommers Bruno Souza Sue Spielman Bill Venners David Vydra Jim Waldo Dick Wall Barry Warsaw Mark Williamson Matthew Wilson Gregg Wonderly Kevin Wright |
by Christopher Diggins, November 14, 2005, 3 comments
The Iterable concept is an extremely abstract way to treat a collection functionally, without worrying about indexers or iterators.
by Gregg Wonderly, November 14, 2005, 3 comments
I've been working on an enhancement to Jini servce lookup in my reef project over on jini.org. I've still got more work to do before getting to the proposal stage. Here's where I'm at.
by Gregg Wonderly, November 12, 2005, 22 comments
I've been an active user of Jini and Java for the life of these platforms. The distruption that Web Services is causing in the software industry is amazing. Is this an investment for good, or a cost that we'll wish we'd skipped?
by Bruce Eckel, November 11, 2005, 28 comments
There's one rather mind-bending idiom that appears periodically in Java generics. Here's what it looks like: class SelfBounded<T extends SelfBounded<T>>
by Dale Asberry, November 11, 2005, 6 comments
As developers get more savvy in using small-grained requests and web browsers get more powerful as general-purpose processors, this atomization will enable higher-order layering of behavior into rich, value-added applications.
by John D. Mitchell, November 11, 2005, 3 comments
There are a lot of misconceptions about what Moore's Law actually says and even more confusion over what it implies. We're in the early phases of a major transition...
by Christopher Diggins, November 11, 2005, 2 comments
Ostream iterators are a handy but under-utilized tool for using the STL to output containers and ranges. Here I provide an alternative, which has a more pleasing syntax.
by Bruce Eckel, November 10, 2005, 14 comments
There appear to be some strange side effects on packages when using generics.
by Christopher Diggins, November 10, 2005, 16 comments
In the STL there exist numerous concepts such as Random Access Containers, and Back Insertion Sequences. Boost has introduced several improved Range concepts. I've got a new one for the list, the Iterable concept.
by Bruce Eckel, November 9, 2005, 7 comments
I'm hoping this is an obvious one and that my brain is just fried from over-generification.
by Bruce Eckel, November 8, 2005, 17 comments
I came across another generic puzzle and hope that someone has some insights.
by Christopher Diggins, November 8, 2005, 2 comments
I have come up with a first specification of OsXml, an XML schema for publishing and distributing Open-Source code.
by Christopher Diggins, November 7, 2005, 7 comments
Wouldn't it be nice if there existed a standard for XML when you don't need the whole thing? I propose a strict subset of XML called XML minus minus (XML--).
by Bruce Eckel, November 7, 2005, 9 comments
I set out to explore how the compiler treats a plain List vs. a List<?>, and in the process found something mysterious.
by Christopher Diggins, November 5, 2005, 27 comments
A concept is a description of a type, including functions signatures, preconditions, postconditions, invariants, and member types. In C++ it is an abstract idea, but in the next Heron it will exist as a construct. There is one small problem with the syntax when writing function signatures which use concepts.
|
Sponsored Links
|