c++中的void函数,如何在嵌套使用时跳出所有void函数回到主函数呢?例如:
void() { void(){ //进入这个void后执行,并直接回到main } } int main() { //跳出 }