Welcome to Cay Horstmann's Home Page!Photo of Cay Horstmann

{short description of image}cay@horstmann.com | PGP Key


I grew up in Northern Germany and attended the Christian-Albrechts-Universität in Kiel , a harbor town at the Baltic sea. I received a M.S. in computer science from Syracuse University , and a Ph.D. in mathematics from the University of Michigan in Ann Arbor. For four years, I was VP and CTO of an Internet startup that went from 3 people in a tiny office to a public company. I now teach computer science at San Jose State University . In my copious spare time I write books and articles on Java and computer science education. Click here for a copy of my resume .

My Java blog

SJSU Students: Please go to my SJSU course page.

Fellow Horstmanns who are interested in the family genealogy may want to turn to Bernhard Horstmann's site http://www.family-horstmann.net.


Books


Memorable Quotes


The March of Progress

1980: C 
printf("%10.2f", x);
1988: C++
cout << setw(10) << setprecision(2) << showpoint << x;
1996: Java
java.text.NumberFormat formatter = java.text.NumberFormat.getNumberInstance(); formatter.setMinimumFractionDigits(2); 
formatter.setMaximumFractionDigits(2); 
String s = formatter.format(x); 
for (int i = s.length(); i < 10; i++) System.out.print(' '); 
System.out.print(s);
2004: Java
System.out.printf("%10.2f", x);
2008: Scala and Groovy
printf("%10.2f", x)

(Thanks to Will Iverson for the update. He writes: “Note the lack of semi-colon. Improvement!”)


Programming and Software???


Fun Applets


You can get these stickers from here.