(转自:http://www.jb51.net/article/34627.htm)1.
foreach语句C#编译器会把foreach语句转换为IEnumerable接口的方法和属性。 foreach (Person p in persons) {
Console.WriteLine(p)...
分类:
其他好文 时间:
2014-05-26 22:27:19
阅读次数:
404
continue和break的用法一样,直接写上这个单词,后面加一个分号就行比如:continue;break;我们先来谈continue看代码
for (int i=0; i<10; i++) { Console.Write(i); }这个程序的意思输出从0...
分类:
其他好文 时间:
2014-05-26 20:36:46
阅读次数:
351
SuperSocket框架学习笔记2-构建SuperWebSocket服务器程序上一节简单介绍了
基本的SuperSocket服务器这一节我们使用 SuperWebSocket构建一个 能与Unity3D通信的(Console控制台)服务器程序嘎嘎 先下载
需要的 DLL类库服务端:SuperSo....
分类:
Web程序 时间:
2014-05-26 09:16:22
阅读次数:
445
function Animal(name) {
this.name = name;
}
Animal.prototype.eat = function(food) {
console.log("food");
};
Animal.prototype.getName = function()
{
return this.name;
};
var a = new An...
分类:
Web程序 时间:
2014-05-26 05:21:44
阅读次数:
345
/**
* Created by W.J.Chang on 2014/5/23.
*/
d = 1;
var a = {a:'b',c:'d'};
// 枚举Keys
for(var i in a) {
console.log(i);
}
console.log("----");
Object.prototype.d = 'e';
for(var i in a ){
c...
分类:
Web程序 时间:
2014-05-24 21:13:31
阅读次数:
310
/**
* Created by W.J.Chang on 2014/5/23.
*/
// 判读是否是数组的方法
console.log(Array.isArray(new Array));
console.log(Array.isArray([]));
var arr = [1,2,3];
// 遍历方法
arr.forEach(function (v){
console.log...
分类:
Web程序 时间:
2014-05-24 18:01:08
阅读次数:
305
var cat ={};cat.mouse = function(){var
b="1111"};var dog = cat;console.log(dog);console.log(dog.mouse);dog.mouse =
function(){var b="2222"};dog.hat="....
分类:
其他好文 时间:
2014-05-24 09:59:18
阅读次数:
246
static void Main(string[] args) { /*int i,j;
Method1(10,20,out i ,out j ); Console.WriteLine("{0}and{1}", i, ...
分类:
其他好文 时间:
2014-05-23 03:04:48
阅读次数:
276
for (int i = 0; i SteppedIntegerList(int
startIndex, int endEndex, int stepSize){ for (int i = startIndex; i {
Console.WriteLine...
分类:
Web程序 时间:
2014-05-22 16:08:30
阅读次数:
281
1、JS操作符
① 除法运算后,是有小数存在的,跟C语言不同之处
var num = 67/4; ----------> 输出:16.75
console.log(num);
② 通常情况下,操作符与数值/变量之间需要有空格隔开
1) 赋值操作符 =
2) 算数操作符 + 、...
分类:
Web程序 时间:
2014-05-21 08:16:15
阅读次数:
452