C --goto跳转语句

C --goto跳转语句

#include <iostream>
using namespace std;

void func(bool b) {
    if (b==true){
        goto label;
    }
    else {
        goto label1;
    }
label:
    cout << "真" << endl;
    return;
label1:
    cout << "假" << endl;
    return;
}

int main()
{
    /*
    goto语句:可以让CPU跳转到任何一条语句去执行
    语法:goto 标签
    */
    func(1);
    return 0;
}

 

 

 

C --goto跳转语句

上一篇:easyui 实现Tooltip


下一篇:关于Android Canvas.drawText方法中的坐标参数的正确解释