网摘 |  收藏 | 

01 2015 档案

摘要:压缩文件相关的类: public class ZIPCompressUtil { public static Tuple Zip(string strZipTopDirectoryPath, int intZipLevel, string strPassword, stri... 阅读全文
posted @ 2015-01-20 15:39 xulonghua219 阅读(2630) 评论(1) 推荐(0)
摘要:逗号表达式的一般形式是:表达式1,表达式2,表达式3……表达式n逗号表达式的求解过程是:先计算表达式1的值,再计算表达式2的值,……一直计算到表达式n的值。最后整个逗号表达式的值是表达式n的值。看下面几个例子: x=8*2,x*4 /*整个表达式的值为64,x的值为16*/ (x=8*2,x*4),... 阅读全文
posted @ 2015-01-08 10:55 xulonghua219 阅读(13377) 评论(4) 推荐(0)