你见过哪些“丧心病狂”的代码?切勿模仿!
扫描二维码
随时随地手机看文章
......
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)是什么鬼,看了枚举内容恍然大悟,原来是五行(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('