例如:
string myFunc(){
theLogics();
}
发现调用:
myFunc();
崩溃。
但调用:
cout<<"hi"<<endl;
myFunc();
cout<<"hi2"<<endl;
运行正常。
时间: 2024-11-06 16:55:59
例如:
string myFunc(){
theLogics();
}
发现调用:
myFunc();
崩溃。
但调用:
cout<<"hi"<<endl;
myFunc();
cout<<"hi2"<<endl;
运行正常。