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

Why do IDE's complain about "leaking this in constructor"? I've always assumed that it's just bad practice. But I actually never found why it is bad.

share|improve this question
1  
Do you mean leaking this in constructor ? – Vache Mar 24 '12 at 12:36
Have a look at stackoverflow.com/questions/3921616/… – Chetter Hummin Mar 24 '12 at 12:39
Yeh I ment constructor my bad, sorry. I've looked at that link before Amit. – Sir Troll Mar 24 '12 at 12:45

1 Answer

up vote 13 down vote accepted

Leaking the this reference in the constructor (not controller) is dangerous, especially in a multithreaded environment. This is because the object is not fully constructed until the constructor call finishes. Leaking this from the constructor thus means that the external world gets access to an object which is not yet fully constructed. This may not necessarily lead to problems in a a single-threaded program (although it is possible, but the problem is much more obvious in this case). But if this is leaked to other threads, they can actually try to do something with the object before its construction is finished, which leads to subtle and hard to find bugs.

share|improve this answer
Thanks, makes sense :) – Sir Troll Mar 24 '12 at 12:46
Could someone please create and attach a "best-practice" tag to this post, please? – user1050755 Mar 10 at 22:40

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.