How can I cast a boost::shared_array<char> to boost::shared_array<const char>?
|
|
|||||
|
|
Since
|
|||
|
|
|
The other answers are correct, you can't and you shouldn't. Besides, are you sure you want a Practically, this works:
BUT it is not a good idea and only works if boost::shared_array and boost::shared_array have the same implementation. Templates can be partially specialized:
Doing a reinterpret cast between |
|||||||||
|
|
You can't. As both types are based on a template, both types are completely different for the compiler. |
|||
|
|
|
I think you can't. In case you really need it though, you can create a custom smart-pointer class. Hints for that can be found here. |
|||
|
|
|
You could use the get() method to get the underlying char*, which is auto convertible to a const char* - but don't assign it to another shared_array because then you'll have the data deleted twice. Just use it as you need it. like this:
|
|||
|
|
|
Such compiler-generated casting can not be possible. The internals of the class with const-qualified template parameter may differ dramatically from the class without one, due to template specialization feature. Moreover, the use of such feature is sometimes a background for compile-time checks that merely may not allow instantiation of |
|||||||||
|
|
I wouldn't have thought of this without Kirill's awesome answer, but you can effectively extend boost's
with that you can then do something like:
|
|||
|
|