I have seen this question. It seems that regardless of the cast, the temporary object(s) will "survive" until the fullexpression evaluated. But in the following scenario:
template<class T>
struct bar {
T t;
bar(T t) : t(t) {}
template<class U>
bar(bar<U> other) : t(other.t) {}
};
void foo(bar<const double&> b) {
printf("%lf\n", b.t);
}
int main() {
foo(bar<const double&>(2));//#1
foo(bar<int>(2)); //#2
return 0;
}
1 run well, but 2 do not. And MSVC gave me a warning about 2: "reference member is initialized to a temporary that doesn't persist after the constructor exits"
Now I am wondering why they both make a temporary double object and pass it to bar<const double&> and only 2 failed.
@update
I use struct bar instead of boost::tuple in the original post, hope it will be more familiar to others.
Let me make my question more clear. In #1, a temporal double is created from int (2) and then a bar<const double &> is created from it and copied into foo, while in #2, a temporal bar<int> is created and a temporal double is created from the member of bar<int> in the ctor of bar<const double&>. It seems that the temporal double is destructed in foo in #2 while do not in #1. Why? I think they are all part of the fullexpression and shall be exist until bar return.
Tim says "The compiler is smart enough to treat this 2 as a double instead of an int.". so I wrote int i = 2; and passed i to both of the two calls, but things go on like before. I made it in VS2008 with debug mode.
-Wall -Wextra -pedantic(though it does give a warning about the%lfformat specifier not being supported by ISO C++ -- just use%finstead). But the output of the program is "2 0". – Adam Rosenfield Dec 24 '10 at 15:25