你見過哪些“喪心病狂”的代碼?切勿模仿!
......
return result.toString();
這種算嗎?大家盡情吐槽吧!
{
for (int i = 0; i < 100; i )
{
save();
//Save the document for 100 times to ensure it has been saved successfully.
}
}
不知誰寫的,總之我都看哭了~
{
Gold,
Wood,
Water,
Fire,
Earth,
};
看枚舉名字不知道五行(hang)是什么鬼,看了枚舉內(nèi)容恍然大悟,原來是五行(xing)……
………
…………
…………
白砂糖 的分享
// 以下所有right代表左
Kun Andy 的分享
{
Green,
// 綠色
Hong,
// 紅色
}
//......
this.curColortype= ColorType.Hong;
......
毫無違和感,英語和漢語的激烈碰撞,一時愣是沒讀懂代碼,“Hong”為何物,你看注釋才恍然大悟,真是犀利!
// I got confused why it can run successfully.
// PLEASE Do not make any changes before you figure it out.
紳士提督不笑船 的分享
// 上傳隊列
// Uplaod 非手誤,完全原文。
// 為什么你們只吐槽 typo 而不吐槽中英文混合呢。。
myd7349 的分享
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find(':')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('/')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('!')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('@')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('#')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('$')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('%')>=0)
{
AfxMessageBox("您輸入的包含非法字符");
m_Str2="";
UpdateData(FALSE);
return;
}
if(m_Str2.Find('