The worst anti-patterns you have came across.

Posted by ????????? on Programmers See other posts from Programmers or by ?????????
Published on 2011-02-04T18:03:29Z Indexed on 2011/02/04 23:34 UTC
Read the original article Hit count: 339

What are the worst anti-patterns you have came across in your career as a programmer?

I'm mostly involved in java, although it is probably language-independent.

I think the worst of it is what I call the main anti-pattern. It means program consisting of single, extremely big class (sometimes accompanied with a pair of little classes) which contains all logic. Typically with a big loop in which all business logic is contained, sometimes having tens of thousands of lines of code.

© Programmers or respective owner

Related posts about language-agnostic

Related posts about anti-patterns