本篇讲述如何在JUnit 4下正确测试异常,我会从 try..catch的方式谈起,然后说到 @Test(expected=Exception.class),最后论及 @Rules public ExpectedException的实现方式,最终基本可确定用 @Rules是最方便的。我们在用 JUn...
分类:
其他好文 时间:
2015-04-02 18:26:55
阅读次数:
136
A题:有一个n*n的矩阵,矩阵的第一行和第一列的值都为1,其余的有:a[i][j]=a[i-1][j]+a[i][j-1];现在给出一个n求出这个n*n的矩阵中最大的数。显然,最大的数就是a[n][n]。因为n 2 int maze[11][11]; 3 int main() 4 { 5 f...
分类:
其他好文 时间:
2015-04-01 14:47:09
阅读次数:
168
题目链接:valid-sudoku
import java.util.Arrays;
/**
*
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells ...
分类:
其他好文 时间:
2015-03-31 12:52:27
阅读次数:
208
Let’s imagine that you’re playing the following simple computer game. The screen displays n lined-up cubes. Each cube is painted one of m colors. You are allowed to delete not more than k cubes (that d...
分类:
其他好文 时间:
2015-03-31 09:16:05
阅读次数:
141
原文出处: http://www.searchdatabase.com.cn/showcontent_88247.htm以下是部分节选: 最新发布的大数据创新成果包括: Oracle Big Data Discovery是 “可视化的Hadoop”,也是面向大数据洞察的,集发现、探索、转...
分类:
数据库 时间:
2015-03-20 18:20:15
阅读次数:
179
# Local per-repo rules can be added to the .git/info/exclude file in your # repo. These rules are not committed with the repo so they are not shared # with others. This method can be used for local...
分类:
其他好文 时间:
2015-03-20 11:12:29
阅读次数:
150
什么是“脑裂”现象?由于某些节点的失效,部分节点的网络连接会断开,并形成一个与原集群一样名字的集群,这种情况称为集群脑裂(split-brain)现象。这个问题非常危险,因为两个新形成的集群会同时索引和修改集群的数据。如何避免脑裂问题?避免脑裂现象,用到的一个参数是:discovery.zen.mi...
分类:
其他好文 时间:
2015-03-19 18:13:33
阅读次数:
126
对于易维护的代码而言,命名规则非常重要。Objective-C 的方法名往往十分长,但代码块读起来就像散文一样,不需要太多的代码注释。当编写纯粹的 Objective-C 代码时,我们基本遵守标准的Objective-C naming rules,这些命名规则可能与 C++ 风格指南中的大相径庭。例...
分类:
其他好文 时间:
2015-03-18 15:16:13
阅读次数:
111
DescriptionA cellular automaton is a collection of cells on a grid of specified shape that evolves through a number of discrete time steps according to a set of rules that describe the new state of a c...
分类:
其他好文 时间:
2015-03-17 21:52:30
阅读次数:
130
A long-distance telephone company charges its customers by the following rules:Making a long-distance call costs a certain amount per minute, dependin...
分类:
其他好文 时间:
2015-03-17 20:09:22
阅读次数:
135