Tagged Questions
34
votes
7answers
663 views
Are there cases where a typedef is absolutely necessary?
Consider the following excerpt from the safe bool idiom:
typedef void (Testable::*bool_type)() const;
operator bool_type() const;
Is it possible to declare the conversion function without the ...
1
vote
3answers
220 views
How does JavaScript treat the ++ operator?
JavaScript does funky automatic conversions with objects:
var o = {toString: function() {return "40"; }};
print(o + o);
print((o+1)+o);
print((o*2) + (+o));
will print:
4040
40140
120
This is ...