package chap10;import static
org.junit.Assert.*;import java.util.Stack;import org.junit.Test;public class
exec10_4_4 { /** * 将该树打印 * * @param tree */ ...
分类:
其他好文 时间:
2014-06-16 10:58:06
阅读次数:
183
1.Tuples(元组)
元组是多个值组合而成的复合值。元组中的值可以是任意类型,而且每一个元素的类型可以是不同的。
1>定义:使用()包含所有元素,用逗号分开,也可以对每个元素做命名let http404Error = (404, "Not Found")let
http200Status =.....
分类:
其他好文 时间:
2014-06-16 00:14:17
阅读次数:
360
#ifDEBUG首先,大小写不能写错.其次,解决方案配置设为:Debug,才会执行该语句,如果在条件里面搭配Debug.Assert等,效果甚佳。而如果要设置为Release模式,就不会执行条件语句中的内容,有时候可以通过设置!DEBUG来达到发布产品执行的代码。示例代码:int debugNumb...
分类:
其他好文 时间:
2014-06-15 19:15:53
阅读次数:
226
package chap09_Medians_and_Order_Statistics;import
static org.junit.Assert.*;import java.util.Random;import org.junit.Test;public
class SearchAlorithm...
分类:
其他好文 时间:
2014-06-12 17:26:37
阅读次数:
316
断言
断言是一种实时检测条件是否为true的方法如果条件为true,那么代码继续执行如果条件为false,就抛出错误信息,直接终止程序的运行断言的用法使用全局的assert函数passert函数接收一个Bo...
分类:
其他好文 时间:
2014-06-12 13:20:08
阅读次数:
283
#define NDEBUG#include #include int main(int
argc, char *argv[]){ assert(0); printf("%s\n", argv[argc - 1]);//路径到.exe
printf("%s\n", __FILE__...
分类:
其他好文 时间:
2014-06-12 09:00:40
阅读次数:
237