This post originated from an RSS feed registered with Agile Buzz
by James Robertson.
Original Post: Meanwhile, overin clueless-ville...
Feed Title: Cincom Smalltalk Blog - Smalltalk with Rants
Feed URL: http://www.cincomsmalltalk.com/rssBlog/rssBlogView.xml
Feed Description: James Robertson comments on Cincom Smalltalk, the Smalltalk development community, and IT trends and issues in general.
A note on naming conventions. We recommend that you use pithy (single character if possible) yet evocative names for formal type parameters
Like he said, huh??? They are actually recommending this style?
public interface List {
void add(E x);
Iterator iterator();
}
public interface Iterator {
E next();
boolean hasNext();
}
Single character variable names, officially recommended by Sun. I guess they got into the wayback machine with Professor Peabody - because it's about 1978 where they are...