This is what I'm trying to accomplish:
struct test{};
const test returnconst(){
return test();
}
test returnnonconst(){
return test();
}
int main(){
test t1=returnnonconst();
const test t2=returnnonconst();
test t3=returnconst(); //I want this to be a compile error
const test t4=returnconst();
}
The compiler accepts all of the four return* calls. I understand that in the third call a copy of the object is constructed, but I want instead to force the caller of returnconst
to store the value as const
. Are there workaround to this?
You're returning by value. You're creating a copy of a
const
. So you're basically saying you don't want to be able to make copies ofconst
:struct test { private: test(const test& other); };The previous code doesn't work, you get tons of other errors. It's just not possible :)
It doesn't work not because you restrict it from creating copies of
const
objects, but there's no way to enforce that the newly created object is alsoconst
.