FB_Plugin

2006年8月29日 星期二

[Coding]太弱了 邏輯功能障礙

太糟糕了 居然會犯簡單的邏輯錯誤

A=ooooo
if(xxx)
A=ppp
else if (yyy)
A=qqq
else if (zzz)
if ( might false condition)
A=rrr

A一定要等於某物 但為了某些原因 我不想一開始assign A
且要把yyy的if 往上提 我把他搞成

sometype A
if (yyy)
A=qqq
else if (xxx)
A=ppp
else if (zzz)
if ( might false condition)
A=rrr
else A=ooooo

看起來好像很對 但是我卻沒想到 若是zzz的if進去了
卻在裡面的if false了 這樣A就啥都不是了 囧~
好笨..orz

所以現在改成

sometype A
if (yyy)
A=qqq
else if (xxx)
A=ppp
else{
A=ooooo
if (zzz)
if ( might false condition)
A=rrr
}

這樣應該對吧Orz

沒有留言:

張貼留言