Suppose that I have a class like that:
class Foo : boost::noncopyable
{
public:
Foo(int a, int b);
const int something;
const int something_else;
const std::string another_field;
// and that's that, no more methods nor fields
};
Now, is there any practical difference between accessing the objects of this class through a Foo&, as opposed to const Foo&, other than that these two are two distinct types?
There shouldn't be any difference for accessing its fields, as they're const, so they will be accessed to through a const T& anyway.
But is there any difference when it comes to the class as a whole? Something to do with templates, perhaps? Anything?
Now that templatetypedef has written a nice answer, which unfortunately is not helpful in this case, I think it'd be nice to underline that it's very much about what can you do when you already have a reference (note all these "accessing"), not about what you can bind to the reference.
So, you can assume that the ref is already there, bound to some object. Now it's all about what can be done with it.
Foos calledaandb, the assignmenta = bis illegal. Is that what you want? – FredOverflow Feb 14 '12 at 10:27class Foo : boost::noncopyable. – Fanael Feb 14 '12 at 13:21