因此,当我不调用向量类的析构函数时,我的代码可以正常工作。但是当我调用向量析构函数时,它会出错,我的向量也会出错。谁能向我解释为什么?据我了解,添加析构函数行不会有任何区别,因为使用完它们后我只是释放对象。如果有帮助,我会在geekforgeeks ide上对其进行在线编译。
#include <iostream>
#include <vector>
using namespace std;
//Function that converts from base 10 to another base given by user input
//And results are stored in the vector
int getRepresent(vector<int> &vec, int base, int num) {
if (num < base) {
vec.push_back(num);
return 1;
}
vec.push_back(num % base);
return 1 + getRepresent(vec, base, num / base);
}
//Compute the sum of squares of each digit
int computeSsd(int base, int num) {
vector<int> vec;
int len = getRepresent(vec, base, num);
int i;
int sum = 0;
for (i = 0; i < len; i++) {
sum += vec[i] * vec[i];
}
/*
for (auto x: vec) {
cout << x <<' ';
}
vec.~vector(); //the weird part that cause my vector to change once i add this line
*/
return sum;
}
int main() {
int size;
int i;
cin >> size;
for (i = 0; i < size; i++) {
int display;
int base;
int num;
cin >> display >> base >> num;
int ssd = computeSsd(base, num);
cout << display << ' ' << ssd << '\n';
}
return 0;
}
答案 0 :(得分:1)
在这种情况下,您不应该自己调用dsestructor。 * 。
当对象超出范围时,它将被自动调用。
发生的事情是,您自己调用了析构函数,然后在对象超出范围时自动调用析构函数,从而调用了 Undefined Behavior (UB)!想想看,当自动调用析构函数时,对象已经被破坏了!
* Is calling destructor manually always a sign of bad design?