Re: How to push a stack on a stack without passing by value?
On 19 Mai, 15:41, "Siegfried Heintze" <siegfr...@heintze.com> wrote:
I don't like new and delete because
(3) you are prone to memory leaks (I'm trying to refactor the code to
remove
memory leaks)
IMO, this argument is not a "real one". Proper use
of some RAII class, responsible for the resource
management, does prevent all these problems. Smart
pointers (and similar class) are your friend!
(6) examining the contents of a std::list, std::deque or even a std::vector
in the Microsoft debugger is tedious. Examining fixed length arrays is much
nicer since the debugger knows the length of the array.
Similarily this one. Basing on these arguments,
any from of software development would not have
taken place prior to 10 years ago.
Additionally, any modern compiler has reasonable
debugging capabilities to support even these cases.
(In another posting you mentioned VC6 - This indeed
is *not* a compiler that can be compared with
state-of-the art compilers concerning standard
conformity or extraordinary debugging support).
This is really a silly constraint C++ is putting on me: I must make a copy
(pass by value) so I can make a copy (push the elements of one stack on to
another).
The only work around that I can see is a lot of casting and using memcpy
I cannot follow your argumentation here. You are
arguing that you pass by-value, because
"existing implementation does not do this --
it leaves the original intact"
This is all fine, but you are not enforced by
the language to use arguments by-value, a
*const* reference argument would suffice in
combination with reasonable (non-modifying)
member functions.
Your limits exists, because you use the wrong
member function (pop) here, instead of a missing,
but very reasonable one - namely the top()
function, which simply returns the top element
(without "popping" it) and a proper iterator,
which allows element traversal without
modification.[1] With an (internally known) iterator
- the member 'data'+'len' already is one - and
std::reverse_copy from <algorithm> you could
simply solve the mentioned problem.
Greetings from Bremen,
Daniel Kr?gler
[1]: To prevent a misunderstanding: The proposed
top() function is practical as is, but not necessary
to solve the above problem, which only needs the
discussed data vector and std::reverse_copy as
explained in the text.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]