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
---使用 UNION、INTERSECT 或 EXCEPT
运算符合并的所有查询必须在其目标列表中有相同数目的表达式select * from BookInfoList--存在不同的select
BookInfoID,BookInfoBarCode from BookInfoList where ...
分类:
数据库 时间:
2014-06-16 09:25:43
阅读次数:
264
public void mouseDown(MouseEvent e) { try{ //指定目标文件
RandomAccessFile F = new RandomAccess...
分类:
数据库 时间:
2014-06-12 16:02:13
阅读次数:
184
断言
断言是一种实时检测条件是否为true的方法如果条件为true,那么代码继续执行如果条件为false,就抛出错误信息,直接终止程序的运行断言的用法使用全局的assert函数passert函数接收一个Bo...
分类:
其他好文 时间:
2014-06-12 13:20:08
阅读次数:
283
package cn.sevennight.test;import
java.security.MessageDigest;public class md5{ public static String MD5(String
text) { try { MessageDigest md = ...
分类:
编程语言 时间:
2014-06-12 11:11:00
阅读次数:
302
#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