Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I came across this video of Uncle Bob speaking about the SICP book and the assignment statement and it made me think (and read the corresponding chapter from SICP).

I'm wondering whether the arguments listed (local state, side effects, etc.), considering the first edition was published in 1984, are still a problem in modern languages like Java and C#. It may have been a problem then. Is it still now? Or has something changed?

For example in Java we have immutable Strings. A particular area I can think of where assignment is detrimental is concurrency (correct me if I'm wrong). No assignment means no synchronization and no resource deadlocks, right?

share|improve this question
@downvoter: care to say what's wrong with the question and how I can improve it? – Igor Popov Nov 27 '11 at 18:11
Possible duplicates: stackoverflow.com/questions/8245329/java-immutable-classes; stackoverflow.com/questions/3769607/…. (And see the comments at the latter for several more.) – ruakh Nov 27 '11 at 18:14
1  
Nothing you say is specific to the assignment statement/operator. Rather, it's about mutability. – delnan Nov 27 '11 at 18:17
@delnan: doesn't mutability imply the use of the assignment operator? – Igor Popov Nov 27 '11 at 18:21
2  
How does this question not relate to programming or software development? – Marcin Mar 20 '12 at 14:50
show 1 more comment

closed as off topic by Wooble, Adam Wagner, ruakh, Jeremy Banks, dmckee Nov 27 '11 at 19:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.