共计 3865 个字符,预计需要花费 10 分钟才能阅读完成。
作者:知乎答主
zhihu.com/question/30776912
本文章展现的代码的片段来自知乎的同名问答贴,举进去一些背面例子,切勿模拟,就当轻松一刻了吧。
题主的补充
String result;
......
return result.toString();
这种算吗?大家纵情吐槽吧
Cyandev 的分 享
if (m_doc->isModified() == true)
{for (int i = 0; i < 100; i++)
{save();
//Save the document for 100 times to ensure it has been saved successfully.
}
}
不知谁写的,总之我都看哭了。
侯杰 的分享
enum FiveLine
{
Gold,
Wood,
Water,
Fire,
Earth,
};
看枚举名字不晓得五行 (hang) 是什么鬼,看了枚举内容豁然开朗,原来是五行(xing)……
李旭东 的吐槽
<div class="div1">
<div class="div2">
<div class="div3">
</div>
<div class="div4"></div>
</div>
</div>
………
<div class="div27">
<div class="div28">
</div>
</div>
…………
<div class="div396">
<div class="div397"></div>
</div>
…………
<div class="giveMeAFuckingClassName">
</div>
白砂糖 的分享
// 以下所有 left 代表右
// 以下所有 right 代表左
Kun Andy 的分享
public enum ColorType
{
Green,
// 绿色
Hong,
// 红色
}
//......
this.curColortype= ColorType.Hong;
......
毫无违和感!英语和汉语的强烈碰撞,一时愣是没读懂代码,“Hong”为何物,你看正文才豁然开朗!犀利
可能是绿的拼音(lv) 有点像等级,所以为了避免歧义,用了 Green!赞一个!
程序员很可恶,我爱程序猿小家庭!
这些蕴含智慧的代码是礼物也是惊喜!
能够帮你拉这么多 zan!感激!
真爱身边的程序员!
爱他们
孙传武 的分享
有次看一我的项目源码,正文里有个 warning。
// warning: Do not make any changes here.
// I got confused why it can run successfully.
// PLEASE Do not make any changes before you figure it out.
绅士提督不笑船 的分享
变量名
class UplaodDuiLie
// 上传队列
// Uplaod 非手误,齐全原文。// 为什么你们只吐槽 typo 而不吐槽中英文混合呢。。
myd7349 的分享
从长度上来说,完爆楼上各位的。感触下:
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('%')>=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('|')>=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;
}
哪怕不晓得正则表达式,也该晓得 FindOneOf 啊?!就是再不济,也写个循环吧。谨遵 DRY 准则的程序员看到这段代码受到了 1024 Kg 的挫伤。
当然,还有什么:一个线程回调函数函数写了 700 多行的事件咱就不说了。
一个小小的我的项目专门定义了名叫 Global.h/cpp 的文件来搁置全局变量咱也不说了。一个小小的我的项目中一二百个全局变量咱也不说了,这些全局变量中大部分还是指针变量咱也甭说了!!!
我去哭一会去。
青苔 的分享
看见这段代码的时候,我拍了很久的掌……
虎耳 的吐槽
已经在一个家公司,有一次有人发现对每个申请,有个中央都会空等了一秒。
起初问老大,他说如果客户有新要求,随时能够把性能进步一倍以上。
近期热文举荐:
1.600+ 道 Java 面试题及答案整顿(2021 最新版)
2. 终于靠开源我的项目弄到 IntelliJ IDEA 激活码了,真香!
3. 阿里 Mock 工具正式开源,干掉市面上所有 Mock 工具!
4.Spring Cloud 2020.0.0 正式公布,全新颠覆性版本!
5.《Java 开发手册(嵩山版)》最新公布,速速下载!
感觉不错,别忘了顺手点赞 + 转发哦!