The anonymous method keeps a reference to the variable in the enclosing block -- not the actual value of the variable.
By the time the methods are actually executed (when you start the threads) f has been assigned to point to the last value in the collection, so all 3 threads print that last value.
