Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Aオーバーロードされたクラスにしましょう値によるoperator= パラメーターを持つ関数を呼び出すと、オーバーロードされたものが呼び出されますか?Aoperator=
A
operator=
その代入演算子は呼び出されません。 コピーコンストラクタが呼び出されます。
これがコピーコンストラクターの目的であり、同じ型のオブジェクトを取り込んでその型のコピーを作成します。値渡しは、コピーコンストラクターが常に呼び出される典型的なケースです。