SSD
hej027
这个作者很懒,什么都没留下…
展开
-
《计算机网络》笔记
看《计算机网络》的时候总是走神,抓几个小玩意儿而已。 写道kazaa是一款世界著名的p2p软件,采用fasttrack协议。 写道Request For Comments (RFC),是一系列以编号排定的文件。文件收集了有关因特网相关资讯,以及UNIX和因特网社群的软件文件。目前RFC文件是由Internet Society(ISOC)所赞助发行。 基本的因特网通讯协定都有在RFC文件...原创 2009-03-01 00:36:09 · 195 阅读 · 0 评论 -
SSD6 Multiple-Choice Quiz 4
【ssd6 quiz 4 做了6次 】 1.To quickly allocate and free many variables of a commonly used data type, we could (a) minimize the size of the data type. (b) coalesce blocks when th...2008-11-28 17:44:51 · 391 阅读 · 0 评论 -
UAR HE TA【未完成】
How to Write a Usability Aspect Report (UAR)UAR Identifier — <Problem or Good Feature> Succinct description of the usability aspect Evidence for the aspect Explanation of the aspect Severi...2008-12-19 09:16:04 · 207 阅读 · 0 评论 -
两段代码 老师给的
给一个文本框,只能输入数字、小数点和负号,其他的按键输入将不显示。 1.普通程序代码控制Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress Dim c As Char ...2008-12-19 09:52:58 · 139 阅读 · 0 评论 -
正则表达式学习笔记
转自CSDN 原链接未知 1、“.”为通配符,表示任何一个字符,例如:“a.c”可以匹配“anc”、“abc”、“acc”;2、“[]”,在[]内可以指定要求匹配的字符,例如:“a[nbc]c”可以匹配“anc”、“abc”、“acc”;但不可以匹配“ancc”,a到z可以写成[a-z],0到9可以写成[0-9]; 3、数量限定符号,表示匹配次数(或者叫做长度)的符号:包括:“*”—...原创 2008-12-19 10:06:34 · 107 阅读 · 0 评论 -
文本框中只能输入数字
1 同上上篇日志 老师给的代码Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress Dim c As Char c = e.KeyChar ...2008-12-20 15:42:33 · 162 阅读 · 0 评论 -
ssd6 ex4
只有题目的简略翻译 我还没做 有的句子不会翻译Exercise 4Profiling Lab: Understanding Program Performance这个练习呢,将给一个程序让你去优化,虽然会有很多可以优化的地方,不过你应该注意那些能更显著地减少运行时间的优化。这个程序呢,可以perform string substitutions on a list of files。这...2008-12-23 23:06:29 · 244 阅读 · 0 评论