第一次尝试调用 that->getValue() 看起来不错,但只是下面的行(while 循环的头部)给了我 getValue 方法内的错误“访问冲突”。
if(first != 0){
listElement *that = first;
cout << "add: " << that->getValue() << " | " << value << endl;
while(that->getValue() < value) {..}
}
我是否在任何地方通话期间编辑该值?get 方法仅包含“返回值”....