Why is the copy-constructor argument const?

前端 未结 8 2124
时光说笑
时光说笑 2020-11-29 00:30
 Vector(const Vector& other) // Copy constructor 
 {
    x = other.x;
    y = other.y;

Why is the argument a const?

8条回答
提交回复
热议问题