码迷,mamicode.com
首页 >  
搜索关键字:assert    ( 2161个结果
第二章 算法基础 思考题2-4(逆序对)
1 package chap02; 2 3 import static org.junit.Assert.*; 4 5 import java.util.Arrays; 6 7 import org.junit.Test; 8 9 public class ques2_4...
分类:其他好文   时间:2014-06-07 10:46:08    阅读次数:274
Trouble Shooting
情况是这样的,我在写一个类似于Online-Judge的系统,用python很容易实现,编译源程序,运行程序,最后比较程序输出与标准输出得出成绩。现在有个问题,万一程序运行时崩溃,比如出现除0异常,assert失败等等,则在windows下会出现恼人的crash window。我想要避免它,因为我一...
分类:其他好文   时间:2014-06-07 07:11:28    阅读次数:253
归并排序算法
import static org.junit.Assert.*;import java.util.Arrays;import org.junit.Test;public class SortAlgorithms { /** * 归并排序算法 * * @param a * @return */ st...
分类:其他好文   时间:2014-06-06 07:26:53    阅读次数:273
插入排序算法
import static org.junit.Assert.*;import java.util.Arrays;import org.junit.Test;public class SortAlgorithms { /** * 插入排序算法 * * @param n...
分类:其他好文   时间:2014-06-06 07:07:40    阅读次数:205
第二章 算法基础 思考题2-1
package chap02;import static org.junit.Assert.*;import java.util.Arrays;import java.util.Random;import org.junit.Test;/*** * 在归并排序中对小数组采用插入排序 * * @aut...
分类:其他好文   时间:2014-06-05 16:51:05    阅读次数:197
排序算法之冒泡法
package chap02_Basic_Algorithms;import static org.junit.Assert.*;import java.util.Arrays;import org.junit.Test;public class SortAlgorithms { /** * 冒泡法...
分类:其他好文   时间:2014-06-05 15:44:15    阅读次数:241
java 关键字与保留字
Java 关键字列表 (依字母排序 共51组),所有的关键字都是小写,在MyEclipse中都会显示不同的颜色: abstract, assert,boolean, break, byte, case, catch, char, class, const, continue, default, do...
分类:编程语言   时间:2014-06-03 14:44:01    阅读次数:453
ASSERT函数
assert宏的原型定义在中,其作用是假设它的条件返回错误,则终止程序运行,原型定义:#include void assert( int expression );assert的作用是现计算表达式 expression ,假设其值为假(即为0),那么它先向stderr打印一条出错信息,然后通过调用 ...
分类:其他好文   时间:2014-06-01 17:16:07    阅读次数:254
junit4的几个assert方法
在静态类junit.framework.Assert或者静态类org.junit.Assert中存在以下几个方法 1.assertEquals()方法,用来查看对象中存的值是否是期待的值,与字符串比较中使用的equals()方法类似; 2.assertFalse()和assertTrue()方法,用来查看变量是是否为false或true,如果assertFalse()查看的变量的值是fal...
分类:其他好文   时间:2014-06-01 14:08:42    阅读次数:259
json 生成 json字符串
生成json格式的字符串。需要相关包 1 package cn.itcast.controller; 2 3 import static org.junit.Assert.*; 4 5 import java.util.ArrayList; 6 import java.util.List; 7 .....
分类:Web程序   时间:2014-05-31 19:27:44    阅读次数:348
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!