Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ciao, I work in movie industry to simulate and apply studio effects. May I ask what is a fat interface as I hear someone online around here stating it ?

Edit: It is here said by Nicol Bolas (very good pointer I believe)

share|improve this question
2  
Try searching Google before posting a question on StackOverflow, especially for "definition" questions like this. – Seth Carnegie Aug 16 '11 at 19:57
"fat interface" - I never heard that, but sounds like a an interface where more is provided than needed. For example, you can open up notepad on windows and you will see the notepad's interface, the text area and menubar, and thats essentially what you need, a fat interface would be what microsoft word has -- a text area and a lot more other gismos there to be utilized and helpful. Note that a fat interface is subjective at times and not necessarily a bad thing. But someone may correct me on what a 'fat interface' is – user814628 Aug 16 '11 at 19:58
Thank you for your replies.. – Interation Aug 16 '11 at 20:12

3 Answers

very simple explanation is here:

The Fat Interface approach [...]: in addition to the core services (that are part of the thin interface) it also offers a rich set of services that satisfy common needs of client code. Clearly, with such classes the amount of client code that needs to be written is smaller.

When should we use fat interfaces? If a class is expected to have a long life span or if a class is expected to have many clients it should offer a fat interface.

share|improve this answer
Was about to post that myself :) – Goz Aug 16 '11 at 19:56
@sbi - i know, but I think this is the answer and the linked text is very very short... :) – relaxxx Aug 16 '11 at 19:57
@relaxxx: If it's short, it's all the more reason to quote it. I did this now. – sbi Aug 16 '11 at 20:00
@sbi you are right, thank you – relaxxx Aug 16 '11 at 21:29

fat interface - an interface with more member functions and friends than are logically necessary. TC++PL 24.4.3 source

share|improve this answer

An interface with more methods or friends than is really necessary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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