vote up 1 vote down star
2

Hey. I remember reading somewhere about a programimng paradigm that has very tough restrictions about OO. It forbids nested ifs and elses entirely, avoid functions in the global namespace not associated with a class, and stuff like that. It's supposedly pretty famous. Does anyone know how it is called? Thanks.

I'll give an example. This is not supposed to be a totally serious paradigm - its just heavy restrictions to improve your "OO style". For example a FizzBuzz program you'll make an object that inherits from integer and has a method 'representMyself', and an object 'FizzBuzzNumbersRange' which holds an array of FizzBuzz numbers with a method 'representAll', or something. etc. etc.

flag

I can't imagine a serious programming language that doesn't support nested if statements. Are you sure about that bit? – Greg Hewgill Sep 7 at 19:33
@Greg he said "paradigm" not language. But it still sounds odd. – TM Sep 7 at 19:37
Are you sure you are not talking about Functional programming? which prefer recursive over nested structure or loop. – NawaMan Sep 7 at 19:38
I remember seeing a Google Tech Talk about something that sounds like this, but I can't find it with a quick glance. I'm pretty sure it involved testing - it makes it easier to mock objects or something like that. I think they weren't actually advocating it, but just thinking out loud about the idea. – Paul Biggar Sep 7 at 19:42
2  
damn hippies... – skaffman Sep 7 at 19:59
show 1 more comment

1 Answer

vote up 2 vote down check

I think you're refering to Object Calisthenics which have the following rules:

  1. Use one level of indentation per method
  2. Don't use the else keyword
  3. Wrap all primitives and strings
  4. Use only one dot per line
  5. Don't abbreviate
  6. Keep all entities small
  7. Don't use any classes with more than two instance variables
  8. Use first class collections
  9. Don't use any getters, setters or properties
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.