Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Some pretty darn good advice in here. This might be slightly embarrassing, but it actually makes me appreciate the value of Factories; something I always thought was a little overkill for anything but GUI code.


They are overkill. They're java man's substitute for lambdas. But if all you have is java, everything looks like an object.


I don't understand this. Are you using closures as types? If so, what can they offer that factories can't? Trying to understand, genuinely curious.


They offer the same functionality (more or less)... Factory objects just feel like overkill - usually they carry no state of their own, so why are they objects? If you could pass around functions, you could just use them instead.

    x_factory_proto :: GlobalParams -> InitParams -> X
    ...
    x_factory = x_factory_proto some_params


except ints, chars and bools.


Further proof that premature optimization is the root of all evil. (Compilers can automatically solve the performance issue of boxed native types now, so there is no reason to provide the programmer with unboxed types. But of course Java does because... it's Java.)




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: