In this blog, we will start with the design of a vector class, exploring the implementation details of defining member functions as const references and non-const references, as well as their practical applications in operator overloading, setting friend functions, constructors, and more. On a deeper level, this article uses this example to discuss the trade-offs between the encapsulation philosophy and flexibility in OOP.
intmain() { int n; cin>>n; MyVect v1(n); double x; cin >> v1; cout << "Now v1 is: "<< v1 << endl; cout << "The length of v1 is " << v1.getlength() << endl; cout << "The norm of v1 is " << v1.getnorm() << endl; x = v1 - 1.0; cout << "The norm of v1 minus 1 is " << x << endl; MyVect v2 = v1; cout << "Now v2 is: " << v2 << endl; //cout << "The number of vectors is: " << v1.getcount() << endl; cout << endl; { MyVect v3(n); v3= v1 + v2; cout << "The result of v1+v2 is: " << v3 << endl; cout << "The 1st element of v3 is " << v3[1] << endl; //cout << "The number of vectors is: " << MyVect::getcount() << endl; } cout << endl; cout << "The number of living vectors is: " << v1.getliving() << endl; //cout << "The number of total vector is: " << v1.getcount() << endl; cout << "The result of v1++ is: " << v1++ << endl; cout << "The result of v1==v2 is " << (v1==v2) << endl; cout << "The result of ++v2 is: " << ++v2 << endl; cout << "The result of v1==v2 is " << (v1==v2) << endl; return0; }
/* * @Author: Xiyuan Yang xiyuan_yang@outlook.com * @Date: 2024-11-11 21:10:21 * @LastEditors: Xiyuan Yang xiyuan_yang@outlook.com * @LastEditTime: 2024-12-30 14:24:24 * @FilePath: \CODE_for_Vscode\C++_project\testcode_5.cpp * @Description: * Do you code and make progress today? * Copyright (c) 2024 by Xiyuan Yang, All Rights Reserved. */ #include<iostream> usingnamespace std;
classMyClass { private: int value;
public: // 构造函数 MyClass(){ cout<<"Create a new object with default constructor"<<endl; } MyClass(int v) : value(v) { cout<<"Create a new object!"<<endl; } MyClass(const MyClass& x){ value=x.value; cout<<"Create a new object with copy constructor"<<endl; } ~MyClass(){ cout<<"The object destroyed"<<endl; }
intmain(){ MyClass obj3(10); obj3.display(); (obj3++).display(); ((obj3++)++).display(); return0; } /* Create a new object! Value: 10 Create a new object with copy constructor Value: 10 The object destroyed Create a new object with copy constructor Create a new object with copy constructor Value: 11 The object destroyed The object destroyed The object destroyed */
cout<<"Now lets look at the obj4"<<endl; MyClass obj4(100); cout<<"Normal use "<<obj4<<endl; cout<<"++ in the front "<<(++obj4)<<endl; //cout<<"++ in the back "<<(obj4++)<<endl; //上面这一行先注释掉,之后再讨论 return0; } /* Create a new object! Value: 10 Create a new object with copy constructor Value: 10 The object destroyed Create a new object with copy constructor Create a new object with copy constructor Value: 11 The object destroyed The object destroyed Now lets look at the obj4 Create a new object! Normal use 100 ++ in the front 101 The object destroyed The object destroyed */
现在我们可以把cout<<"++ in the back "<<(obj4++)<<endl;这一行代码的注释删掉,不出意外的话,我们的代码出现了报错。
1 2 3 4 5
testcode_5.cpp:81:35: error: cannot bind non-const lvalue reference of type'MyClass&' to an rvalue of type'MyClass' cout<<"++ in the back "<<(obj4++)<<endl; ~~~~~^~~ Translate:无法将类型为 MyClass& 的非 const 左值引用绑定到类型为 MyClass 的右值。