FindBugs 入门——帮你减少代码中的bug数FindBugs 入门FindBugs 作用开发人员在开发了一部分代码后,可以使用FindBugs进行代码缺陷的检查。提高代码的质量,同时也可以减少测试人员给你报的bug数。代码缺陷分类根据缺陷的性质,大致可以分为下列几类·Bad practice ...
分类:
数据库 时间:
2015-09-10 22:39:31
阅读次数:
335
FindBugs 入门FindBugs 作用开发人员在开发了一部分代码后,可以使用FindBugs进行代码缺陷的检查。提高代码的质量,同时也可以减少测试人员给你报的bug数。代码缺陷分类根据缺陷的性质,大致可以分为下列几类·Bad practice 不好的做法·Correctness 可能有不正确·...
分类:
数据库 时间:
2015-09-09 22:42:20
阅读次数:
321
1.if—then#!/bin/bashif date 如果命令运行成功(退出码为0),则then部分的命令被执行then echo "good"fi2.if—then—else#!/bin/bashif hunterthen echo "good"else echo "bad" ...
分类:
系统相关 时间:
2015-09-08 22:03:55
阅读次数:
198
一些运行在Nginx上的网站有时候会出现“502 Bad Gateway”错误,有些时候甚至频繁的出现。以下是从Google搜集整理的一些Nginx 502错误的排查方法,供参考:Nginx 502错误的原因比较多,是因为在代理模式下后端服务器出现问题引起的。这些错误一般都不是nginx本身的问题,...
分类:
其他好文 时间:
2015-09-08 19:48:19
阅读次数:
130
?For the End User, the Interface Is the SystemVinayak Hegde
THERE ARE Too MAny good pRoduCTS hidden behind bad user-interfaces. The end user will access the system through its user interface. If the q...
分类:
其他好文 时间:
2015-09-08 09:43:43
阅读次数:
160
Just use binary search to find the first bad version.The code is as follows. 1 // Forward declaration of isBadVersion API. 2 bool isBadVersion(int ver...
分类:
其他好文 时间:
2015-09-07 22:30:00
阅读次数:
212
1.新建空文档,写入shell命令:#!/bin/sh cd /home/plg./usb第一行一定要有,一开始参考网上写的#!/usr/bin/sh,会提示错误bash: ./file.sh: /usr/bin/sh: bad interpreter: No such file or ...
分类:
系统相关 时间:
2015-09-06 12:42:47
阅读次数:
145
1:判空 // Bad if (variable.equals("literal")) { ... } // Good if ("literal".equals(variable)) { ... }防止偶发的空指针错误 2:检查NULL和lenght 无论如何,只要你有一个集合、数组等,请确保它存在,并且...
分类:
编程语言 时间:
2015-09-06 11:18:02
阅读次数:
138
1 /* 2 如果两个字符串的字符一样,但是顺序不一样,被认为是兄弟字符串, 3 问如何在迅速匹配兄弟字符串(如,bad和adb就是兄弟字符串)。 4 */ 5 #include 6 using namespace std; 7 8 int isBroStr(char *...
分类:
其他好文 时间:
2015-09-03 21:47:04
阅读次数:
179
题目连接http://poj.org/problem?id=2377Bad CowtractorsDescriptionBessie has been hired to build a cheap internet network among Farmer John's N (2 #include#...
分类:
其他好文 时间:
2015-08-31 17:16:08
阅读次数:
203