06 2016 档案

摘要:有缩略图功能 但是 感觉不全面,而且有点问题,继续学习,将来以后修改下 阅读全文
posted @ 2016-06-29 21:16 尘梦 阅读(1884) 评论(0) 推荐(0) 编辑
摘要:写的一部分有问题 参考了别人一部分 阅读全文
posted @ 2016-06-28 21:02 尘梦 阅读(542) 评论(1) 推荐(0) 编辑
摘要:sum=$sum; //总记录数 $this->page_show=$row; //每页显示 $this->totalpage=ceil($this->sum/$this->page_show);//总页数 $this->url=$this->curUrl(); //地支 $this->page=$this->curPage(... 阅读全文
posted @ 2016-06-27 15:00 尘梦 阅读(175) 评论(0) 推荐(0) 编辑
摘要:测试页面 阅读全文
posted @ 2016-06-22 21:36 尘梦 阅读(163) 评论(0) 推荐(0) 编辑
摘要:先前也知道,Monitor实现的是在读写两种情况的临界区中只可以让一个线程访问,那么如果业务中存在”读取密集型“操作,就 好比数据库一样,读取的操作永远比写入的操作多。针对这种情况,我们使用Monitor的话很吃亏,不过没关系,ReadWriterLock 就很牛X,因为实现了”写入串行“,”读取并 阅读全文
posted @ 2016-06-20 10:56 尘梦 阅读(1144) 评论(0) 推荐(0) 编辑
摘要:当多个线程在并发的时候,难免会碰到相互冲突的事情,比如最经典的ATM机的问题,并发不可怕,可怕的是我们没有能力控制。 线程以我的理解可以分为三种 ① 锁。 ② 互斥。 ③ 信号。 好,这一篇主要整理“锁”,C#提供了2种手工控制的锁 一: Monitor类 这个算是实现锁机制的纯正类,在锁定的临界区 阅读全文
posted @ 2016-06-20 09:42 尘梦 阅读(5160) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Threading; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ManualResetEvent rem = new ManualResetEven... 阅读全文
posted @ 2016-06-17 09:13 尘梦 阅读(1365) 评论(0) 推荐(0) 编辑
摘要://string s = "select count(*) from t_t_cw_defaultitem where itemname=" + "'" + itemname + "'" + " and " + " itemchild=" + "'" + itemchild + "'" + " an 阅读全文
posted @ 2016-06-16 11:16 尘梦 阅读(183) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2016-06-16 09:50 尘梦 阅读(169) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Wind... 阅读全文
posted @ 2016-06-14 10:50 尘梦 阅读(541) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Th... 阅读全文
posted @ 2016-06-14 09:06 尘梦 阅读(524) 评论(0) 推荐(0) 编辑
摘要:象法 象法 由于天干地支的意义均来自于树木,所以他们的原始字义也被人们赋予了生动的说法。[2] 干者犹树之干也。 甲:像草木破土而萌,阳在内而被阴包裹。[3] 乙:草木初生,枝叶柔软屈曲。. 丙:炳也,如赫赫太阳,炎炎火光,万物皆炳燃着,见而光明。 丁:草木成长壮实,好比人的成丁。 戊:茂盛也,象征 阅读全文
posted @ 2016-06-13 21:57 尘梦 阅读(520) 评论(0) 推荐(0) 编辑
摘要:PHP所提供的"重载"(overloading)是指动态地"创建"类属性和方法。我们是通过魔术方法(magic methods)来实现的。 当调用当前环境下未定义或不可见的类属性或方法时,重载方法会被调用。本节后面将使用"不可访问属性(inaccessible properties)"和"不可访问方 阅读全文
posted @ 2016-06-13 21:19 尘梦 阅读(555) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Th... 阅读全文
posted @ 2016-06-13 11:10 尘梦 阅读(263) 评论(0) 推荐(0) 编辑
摘要:public Form1() { InitializeComponent(); } Thread t; private void button1_Click(object sender, EventArgs e) { int num = int.Parse(this.t... 阅读全文
posted @ 2016-06-13 10:20 尘梦 阅读(156) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Th... 阅读全文
posted @ 2016-06-12 11:06 尘梦 阅读(143) 评论(0) 推荐(0) 编辑
摘要://Process[] pro= Process.GetProcesses(); //foreach (var item in pro) //{ // Console.WriteLine(item); // item.Kill(); //} ... 阅读全文
posted @ 2016-06-12 09:39 尘梦 阅读(99) 评论(0) 推荐(0) 编辑