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

Is the method delegation a good style of java programming? I think this is a burden to the call stack, isn' t it? How to hide a range of methods and allow others to be in use?

share|improve this question
1  
give examples of what you want to ask – Bozho Sep 14 '11 at 13:11
The question, as you've posed it, is more of a discussion question, which StackOverflow is not designed to answer. See the section "What kinds of questions should you not ask here?" in the FAQ (stackoverflow.com/faq) If you rephrase it more as "what are the pros/cons of delegation vs. method X" you're more likely to get an answer. As Bozho suggests, unless you give a specific example, comparison, or problem you want to solve or have answered, we can't really help you. – normalocity Sep 14 '11 at 13:17
1  
"Burden on the call stack"? I suppose so, but unless you are delegating thousands of layers deep, it just doesn't matter. An extra call is going to add maybe a few dozen bytes to your stack (depending on how many parameters the function has). On modern computers the stack is plenty big to handle many layers of this. The only way I've blown the stack in a long time is by having a recursive call that was stuck in an infinite loop. Don't worry about micro-optimizations like this unless you have evidence that you really have a problem. – Jay Sep 14 '11 at 13:19

closed as not a real question by Ernest Friedman-Hill, hvgotcodes, medopal, Matt Ball, Sean Patrick Floyd Sep 14 '11 at 13:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.