理解C语言-06-逻

来源:互联网 发布:淘宝儿童摇摆车扭扭车 编辑:程序博客网 时间:2024/05/17 07:56

C语言的逻辑控制主要有7种:

1> goto 最强大,但一般只在特殊环境下使用。

2> if else

3> ?:

4> switch case

5> for

6> while

7> do while


自从dijkstra的论文Go To Statement Considered Harmful以后,C语言代码很少看到goto了。(一般用在多次资源分配的错误处理上)

但,从计算机的角度来说,缺少goto(jmp指令)还真没法干活。其实,goto是最符合我们的设计流程图的。

将一个流程图用goto来实现也最直观。goto能真正让我们做到心之所动,剑之所至。


接下来,分别考虑将2-7转化为对应的goto语言版本(等价于转化为对应汇编版本)。

2 if语句

if (条件1)

代码块1

else

代码块2

对应goto:

t = 条件1;

if (t为真)goto true;

代码块2

goto finish

true:

代码块1

finish:


3 ?: 和if else是等价的。

只不过if语句为代码块,?:为表达式。

变量= (条件1)? 表达式1:表达式2;

goto版本:

t = 条件1;

if (t为真)

goto true;

变量=表达式2

goto finish;

true:

变量=表达式1

finish:

注意:?:里面的表达式尽量简单,过于复杂的话,改用if语句实现,这样方便调试。

4 switch-case

switch (条件取值变量)

case 元素1 :

语句块1;

break;

case 元素2:

语句块2;

break;

...

case 元素N

语句块N;

break;

default:

默认处理。

break;

}

goto版本:

跳转表={标签1,标签2,...,标签N }

goto 跳转表[元素index]

标签1:

语句块1

goto Finish

标签2:

语句块2

goto Finish


http://v.17173.com/playlist_16243005.html?retcode=0
http://v.17173.com/playlist_16244048.html?retcode=0
http://v.17173.com/playlist_16244589.html?retcode=0
http://v.17173.com/playlist_16245740.html?retcode=0
http://v.17173.com/playlist_16246511.html?retcode=0
http://v.17173.com/playlist_16276445.html?retcode=0
http://v.17173.com/playlist_16275379.html?retcode=0
http://v.17173.com/playlist_16274196.html?retcode=0
http://v.17173.com/playlist_16272743.html?retcode=0
http://v.17173.com/playlist_16271745.html?retcode=0
http://v.17173.com/playlist_16270694.html?retcode=0
http://v.17173.com/playlist_16269747.html?retcode=0
http://v.17173.com/playlist_16268962.html?retcode=0
http://v.17173.com/playlist_16267988.html?retcode=0
http://v.17173.com/playlist_16266881.html?retcode=0
http://v.17173.com/playlist_16265728.html?retcode=0
http://v.17173.com/playlist_16264745.html?retcode=0
http://v.17173.com/playlist_16263755.html?retcode=0
http://v.17173.com/playlist_16262692.html?retcode=0
http://v.17173.com/playlist_16260273.html?retcode=0
http://v.17173.com/playlist_16250327.html?retcode=0
http://v.17173.com/playlist_16249446.html?retcode=0
http://v.17173.com/playlist_16248725.html?retcode=0
http://v.17173.com/playlist_16248141.html?retcode=0
http://v.17173.com/playlist_16247142.html?retcode=0
http://v.17173.com/playlist_16301211.html?retcode=0
http://v.17173.com/playlist_16299899.html?retcode=0
http://v.17173.com/playlist_16298388.html?retcode=0
http://v.17173.com/playlist_16297123.html?retcode=0
http://v.17173.com/playlist_16296085.html?retcode=0
http://v.17173.com/playlist_16294578.html?retcode=0
http://v.17173.com/playlist_16293492.html?retcode=0
http://v.17173.com/playlist_16292032.html?retcode=0
http://v.17173.com/playlist_16290619.html?retcode=0
http://v.17173.com/playlist_16289611.html?retcode=0
http://v.17173.com/playlist_16288604.html?retcode=0
http://v.17173.com/playlist_16286938.html?retcode=0
http://v.17173.com/playlist_16285846.html?retcode=0
http://v.17173.com/playlist_16284744.html?retcode=0
http://v.17173.com/playlist_16283600.html?retcode=0
http://v.17173.com/playlist_16282325.html?retcode=0
http://v.17173.com/playlist_16281018.html?retcode=0
http://v.17173.com/playlist_16279921.html?retcode=0
http://v.17173.com/playlist_16279035.html?retcode=0
http://v.17173.com/playlist_16277617.html?retcode=0
http://v.17173.com/playlist_16324284.html?retcode=0
http://v.17173.com/playlist_16323278.html?retcode=0
http://v.17173.com/playlist_16322226.html?retcode=0
http://v.17173.com/playlist_16321011.html?retcode=0
http://v.17173.com/playlist_16320132.html?retcode=0
http://v.17173.com/playlist_16319146.html?retcode=0
http://v.17173.com/playlist_16318138.html?retcode=0
http://v.17173.com/playlist_16317154.html?retcode=0
http://v.17173.com/playlist_16316170.html?retcode=0
http://v.17173.com/playlist_16315099.html?retcode=0
http://v.17173.com/playlist_16313923.html?retcode=0
http://v.17173.com/playlist_16313062.html?retcode=0
http://v.17173.com/playlist_16311883.html?retcode=0
http://v.17173.com/playlist_16310039.html?retcode=0
http://v.17173.com/playlist_16308938.html?retcode=0
http://v.17173.com/playlist_16307556.html?retcode=0
http://v.17173.com/playlist_16306309.html?retcode=0
http://v.17173.com/playlist_16305034.html?retcode=0
http://v.17173.com/playlist_16303450.html?retcode=0
http://v.17173.com/playlist_16302296.html?retcode=0
http://v.17173.com/playlist_16448988.html?retcode=0
http://v.17173.com/playlist_16448352.html?retcode=0
http://v.17173.com/playlist_16447628.html?retcode=0
http://v.17173.com/playlist_16446998.html?retcode=0
http://v.17173.com/playlist_16446322.html?retcode=0
http://v.17173.com/playlist_16445711.html?retcode=0
http://v.17173.com/playlist_16444907.html?retcode=0
http://v.17173.com/playlist_16443828.html?retcode=0
http://v.17173.com/playlist_16443046.html?retcode=0
http://v.17173.com/playlist_16442144.html?retcode=0
http://v.17173.com/playlist_16441358.html?retcode=0
http://v.17173.com/playlist_16440657.html?retcode=0
http://v.17173.com/playlist_16439949.html?retcode=0
http://v.17173.com/playlist_16438547.html?retcode=0
http://v.17173.com/playlist_16437867.html?retcode=0
http://v.17173.com/playlist_16436965.html?retcode=0
http://v.17173.com/playlist_16436354.html?retcode=0
http://v.17173.com/playlist_16435764.html?retcode=0
http://v.17173.com/playlist_16435085.html?retcode=0
http://v.17173.com/playlist_16434230.html?retcode=0
http://v.17173.com/playlist_16433539.html?retcode=0
http://v.17173.com/playlist_16432890.html?retcode=0
http://v.17173.com/playlist_16432210.html?retcode=0
http://v.17173.com/playlist_16431418.html?retcode=0
http://v.17173.com/playlist_16430439.html?retcode=0
http://v.17173.com/playlist_16429753.html?retcode=0
http://v.17173.com/playlist_16429087.html?retcode=0
http://v.17173.com/playlist_16428423.html?retcode=0
http://v.17173.com/playlist_16427373.html?retcode=0
http://v.17173.com/playlist_16426697.html?retcode=0
http://v.17173.com/playlist_16426046.html?retcode=0
http://v.17173.com/playlist_16425281.html?retcode=0
http://v.17173.com/playlist_16424515.html?retcode=0
http://v.17173.com/playlist_16423784.html?retcode=0
http://v.17173.com/playlist_16423128.html?retcode=0
http://www.photowoo.com/read/3951521
http://www.photowoo.com/read/3951482
http://www.photowoo.com/read/3951444
http://www.photowoo.com/read/3951402
http://www.photowoo.com/read/3951367
http://www.photowoo.com/read/3951295
http://www.photowoo.com/read/3951218
http://www.photowoo.com/read/3951171
http://www.photowoo.com/read/3951106
http://www.photowoo.com/read/3933125
http://secret.ameba.jp/ny6688/amemberentry-11803647598.html
http://secret.ameba.jp/ny6688/amemberentry-11803651206.html
http://secret.ameba.jp/ny6688/amemberentry-11803652231.html
http://secret.ameba.jp/ny6688/amemberentry-11803653249.html
http://secret.ameba.jp/ny6688/amemberentry-11803653842.html


0 0