using System;using System.Collections.Generic;using System.Linq;using System.Text;using WindowsFormsApplication3.Enums;namespace WindowsFormsApplicati...
分类:
其他好文 时间:
2014-07-23 11:41:56
阅读次数:
215
Backbone.Collectionbackbone的Collection(集合),用来存储多个model,并且可以多这些model进行数组一样的操作,比如添加,修改,删除,排序,插入,根据索引取值,等等,数组有的方法,他基本上都有源码注释 backbone ...
分类:
其他好文 时间:
2014-07-23 11:41:36
阅读次数:
258
nodejs发送udp广播还是蛮简单的,我们先写个服务器用于接收广播数据,代码如下:var dgram = require("dgram");var server = dgram.createSocket("udp4");server.on("error", function (err) { co....
分类:
Web程序 时间:
2014-07-23 11:41:26
阅读次数:
226
using System;using System.Collections.Generic;using System.Linq;using System.Text;using WindowsFormsApplication3.DataStorge;using WindowsFormsApplicat...
分类:
其他好文 时间:
2014-07-23 11:40:56
阅读次数:
182
In one embodiment, a computing device (e.g., border router or network management server) transmits a discovery message into a computer network, such a...
分类:
其他好文 时间:
2014-07-23 11:40:46
阅读次数:
445
char型变量中能不能存贮一个中文汉字?char型变量是用来存储Unicode编码的字符的,unicode编码字符集中包含了汉字,所以,char型变量中当然可以存储汉字啦。不过,如果某个特殊的汉字没有被包含在unicode编码字符集中,那么,这个char型变量中就不能存储这个特殊汉字。补充说明:un...
分类:
编程语言 时间:
2014-07-23 11:40:16
阅读次数:
325
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-07-23 11:39:46
阅读次数:
196
1005: [HNOI2008]明明的烦恼Time Limit: 1 SecMemory Limit: 162 MBSubmit: 2248Solved: 898[Submit][Status]Description自从明明学了树的结构,就对奇怪的树产生了兴趣...... 给出标号为1到N的点,以及...
分类:
其他好文 时间:
2014-07-23 11:39:26
阅读次数:
409
今天是在吾索实习的第10天。很荣幸地,吾索公司的陈经理为我们这班实习生开展了一次思想指导课,让我们互相交流,让我了解到以后工作所需注意的细节和应该培养的习惯,摆正了我们在公司实习的心态。我们不应该抱着一种只是实习的心态在公司做事情,我们应该把自己看作是公司的正式员工,公司的一份子,要在每件事上都.....
分类:
其他好文 时间:
2014-07-23 11:39:16
阅读次数:
181
在上一篇文章中,说了下foreach的用法,但是还是比较复杂的,要实现接口才能进行遍历,有没有简单些的方法呢?答案是肯定的。且看下面。yield关键字的用法:1.为当前类型添加一个任意方法,但是要求该方法的返回值类型必须是IEnumerable: 1 class Person 2 {...
分类:
其他好文 时间:
2014-07-23 11:39:06
阅读次数:
232