This topic has been archived. It cannot be replied.
-
工作学习 / 学科技术讨论 / 今天被自己雷到了,居然写出了这样的代码: rowid = rowid-1+1;
-holdon(again);
2009-1-9
(#4973271@0)
-
If a=a then a=b else a=a end if
-winstonwx(绿芒果);
2009-1-9
(#4973291@0)
-
take it easy.. it is not a bug..:D
-sunday8(sunday8);
2009-1-10
(#4974279@0)
-
在JavaScript中这个并不是没用的code,只是人们习惯写x=x+0;
-dzhu(Daniel);
2009-1-10
(#4974498@0)
-
haha,正是javascript. 清晰的写法应该是 r=ParseInt(r).
-holdon(again);
2009-1-11
(#4975007@0)
-
bool foo(bool a)
{
if ( a == TRUE )
return TRUE;
else
return FALSE;
}
-qwertyasd(lefthanded);
2009-1-17
(#4988842@0)
-
It should be: bool foo(bool a) { if ( a != FALSE) return TRUE; else return FALSE; }
-carolhu(晒太阳的大花猫);
2009-1-17
(#4989953@0)