What's the ampersand for when used after class

2019-02-02 00:36发布

I know about all about pointers and the ampersand means "address of" but what's it mean in this situation?

Also, when overloading operators, why is it common declare the parameters with const?

4条回答
【Aperson】
2楼-- · 2019-02-02 00:56

Depending on the context of the ampersand it can mean 2 different things. The answer to your specific question is that it's a reference, not "the address of". They are very different things. It's very important to understand the difference.

C++ Reference

The reason to make parameters const is to ensure that they are not changed by the function. This guarantees the caller of the function that the parameters they pass in will not be changed.

查看更多
【Aperson】
3楼-- · 2019-02-02 00:58

In that case you are returning a reference to an ostream object. Strictly thinking of ampersand as "address of" will not always work for you. Here's some info from C++ FAQ Lite on references.

As far as const goes, const correctness is very important in C++ type safety and something you'll want to do as much as you can. Another page from the FAQ helps in that regard. const helps you from side effect-related changes mucking up your data in situations where you might not expect it.

查看更多
手持菜刀,她持情操
4楼-- · 2019-02-02 01:05

In C++ type declarations, the ampersand means "reference". In this case operator << returns a reference to an ostream object.

Since it actually returns *this it's actually the same ostream object, and means you can chain calls to operator <<, similar to this:

os << "Hello" << " " << "World" << endl;
查看更多
叛逆
5楼-- · 2019-02-02 01:13

It means that the variable is a reference. It's kind of like a pointer, but not really.

See: Reference (C++)

查看更多
登录 后发表回答