Re: Which constructor?
On 3/13/2014 9:24 AM, Stefan Ram wrote:
Victor Bazarov <v.bazarov@comcast.invalid> writes:
::std::string t ={ "beta" }; }
This is a copy-initialization, preceded by the same parameterized one in
order to construct a temporary, I think. The compiler is still allowed
to forgo creation of the temporary, but the copy c-tor has to exist and
be accessible.
Are you seeing any problem constructing an std::string?
I am writing about this in my German-language C++ tutorial,
and wanted to be sure that I explain it correctly. I would
have guessed that it was copy initialization, but I wanted
to be sure.
The best thing to be sure would be a source of
::std::string, and then insert debug print statements into it.
You don't need to modify any of standard classes to illustrate your
point. Actually, many authors I've seen create their own classes that
look (or in part act) like standard ones, containers, functors, etc., to
show some specific behavior. And in your case I'd expect to see some
minimalistic implementation of, as you wish, a string simile. Generally
speaking, it might prove useful for some other mechanisms that you want
to illuminate, like dynamic memory management, move construction (and
assignment), etc.
In fact, there is a GNU header:
namespace __gnu_debug
{
/// Class std::basic_string with safety/checking/debug instrumentation.
template<typename _CharT, typename _Traits = std::char_traits<_CharT>,
typename _Allocator = std::allocator<_CharT> >
class basic_string
...
which has constructors:
basic_string(const _CharT* __s, size_type __n,
const _Allocator& __a = _Allocator())
: _Base(__gnu_debug::__check_string(__s, __n), __n, __a)
{ }
and I tought I could just insert
::std::cerr << "this was just called\n";
into the braces. But the compiler complains
debug\string [Error] 'cerr' in namespace 'std' does not name a type
even after including ostream and iostream in this header and
trying dozen of other approaches.
I have no comment on this, sorry. I think you're wasting your time with
those mechanisms. Stick to writing your own small and sweet classes to
serve as example. It can (and should) be inferred that standard classes
behave in the same manner.
V
--
I do not respond to top-posted replies, please don't ask