Different Types of Programmers
Monday, 17. November 2008, 16:20:54
Different types of programmersVia http://curtis.lassam.net/comics/programmers.png
Reddit thread: Different Types of Programmers
By Behrang Saeedzadeh (the 5th incarnation)
Monday, 17. November 2008, 16:20:54
Different types of programmersSaturday, 1. November 2008, 06:30:38
What will this program print in the console when you run it?
public class Main { public static void main(String[] args) { A a = new A(); B b = null; try { b = new B(a); } catch (Exception e) {} System.out.println(a.b); System.out.println(b); System.out.println(a.b == b); } } class A { B b; void setB(B b) { this.b = b; System.out.println(this.b); } public String toString() { return b.toString(); } } class B { public B(A a) { a.setB(this); throw new RuntimeException(); } public String toString() { return "B"; } }
Wednesday, 29. October 2008, 14:56:05
Showing posts 1 - 3 of 7.

anonymous
anonymous
Anonymous writes: Netbeans 6.7.1, Netbeans 6.8 beta, ... still ...
anonymous
anonymous
Anonymous writes: after a few months of use, I have come to the ...
anonymous
anonymous