很抱歉,但我觉得我现在用堆栈和堆来理解这一点,但显然我错了。我在堆上声明了每个对象,但是当第一个metod完成时我都可以通过std :: cout看到时间是ZERO,即:
startTPtr: 00:00:00
当在函数中打印时间时,它确定但在某些功能结束后它会被破坏。
我在这里错过了一些关键的东西吗?我应该从函数返回指针吗?
提前致谢!!!
int main() {
Clock *_clockPtr = new Clock();
MyTime *_startTPtr = new MyTime();
MyTime *_endTPtr = new MyTime();
char *ch = new char[100];
start_app(_startTPtr, _endTPtr, _clockPtr, ch);
cout << "startTPtr: " << *_startTPtr << endl;
return 0;
}
void start_app(MyTime *_startTPtr, MyTime *_endTPtr, Clock *clock, char *ch) {
cout << "Press ENTER to start and finish!";
int newLine = 0;
for (std::string line; std::getline(std::cin, line); ) {
if (newLine == 0) {
std::cout << "... ";
MyTime* myTime1 = new MyTime(clock->give_me_the_time());
_startTPtr = myTime1;
cin >> ch;
} else {
MyTime* myTime2 = new MyTime(clock->give_me_the_time());
_endTPtr = myTime2;
break;
}
cout << "startTPtr: " << *_startTPtr << endl;
newLine++;
}
}
答案 0 :(得分:3)
如果要更改函数中的参数并将其反映在函数的调用者中,则需要通过引用传递参数。否则,参数将被复制,您只需更改副本。
在start_app
功能中,您要更改_startTPtr
和_endTPtr
,因此您需要将它们作为对MyTime
指针的引用传递:
void start_app(MyTime *&_startTPtr, MyTime *&_endTPtr, Clock *clock, char *ch) { ... }