Tagged Questions
17
votes
4answers
1k views
Static/Dynamic vs Strong/Weak
I see these terms banded around all over the place in programming and I have a vague notion of what they mean. A search shows me that such things have been asked all over stack overflow in fact. As ...
8
votes
4answers
3k views
Can someone tell me what Strong typing and weak typing means and which one is better?
Can someone tell me what Strong typing and weak typing means and which one is better?
2
votes
4answers
113 views
What's the difference between Object, *, and no type at all?
Is there any difference between those three declarations?
var x;
var y:Object;
var z:*;
Is there anything in AS that's not an Object?