Ask HN: What are some popularly held cs misconceptions?
Talking about mistakes/misconceptions can sometimes be as elucidating as talking about facts.
Here is one that got me:
In Java this sometimes occurs:
Integer a = 10; Integer b = 10; a == b; // returns true
Integer a = 1000; Integer b = 1000; a == b; // returns false
0 comments
[ 3.1 ms ] story [ 8.9 ms ] threadNo comments yet.