好了,今天我们开始分享Node.
learn to share .
yes , it is ,especially share your happiness with others.
好了,进入正题.
var express = require('express');
var app = express.createServer();
app.get('/',func...
分类:
Web程序 时间:
2014-06-07 15:24:26
阅读次数:
230
1>MSVCRT.lib(MSVCR100.dll) : error LNK2005: "public: virtual char const * __thiscall std::exception::what(void)const " (?what@exception@std@@UBEPBDXZ) already defined in libcmt.lib(stdexcpt.obj)
1>MS...
分类:
其他好文 时间:
2014-06-07 14:42:14
阅读次数:
947
原文:Swift中文教程(四)--函数与闭包Function 函数
Swift使用func关键字来声明变量,函数通过函数名加小括号内的参数列表来调用。使用->来区分参数名和返回值的类型:1 func greet(name:
String, day: String) -> String {2 retu...
分类:
其他好文 时间:
2014-06-06 11:27:32
阅读次数:
213
创建和使用类 Swift 使用class创建一个类,类可以包含字段和方法:1 class
Shape {2 var numberOfSides = 03 func simpleDescription () -> String {4 return
"A shape w...
分类:
其他好文 时间:
2014-06-06 09:12:07
阅读次数:
217
```cppenum Iter: Int{ case s1=0, s2, s3, s4
mutating func next(){ if self == .s4 { self = .s1 return } ...
分类:
其他好文 时间:
2014-06-06 09:07:38
阅读次数:
215
1、打开Virtual NetworkEditor,开始 --> 程序-->
VMware-->VirtualNetworkEditor选中VMnet0,在下面的“VMnet信息”设置区域选中“桥接”,然后把宿主机的无线网卡添加进去。2、打开VMware软件,选中左边要上网的linux主机,右键
-...
分类:
系统相关 时间:
2014-06-06 07:54:38
阅读次数:
535
Swift 使用来声明泛型函数或泛型类型:1 func repeat(item: ItemType,
times: Int) -> ItemType[] {2 var result = ItemType[]()3 for i in 0..times {4
result...
分类:
其他好文 时间:
2014-06-06 07:52:02
阅读次数:
299
函数 Swift 使用func关键字声明函数:1 func greet (name:
String, day: String) -> String {2 return "Hello \(name), today is \(day)."3
}4 greet ("Bob", "Tuesday"...
分类:
其他好文 时间:
2014-06-06 07:49:12
阅读次数:
340
协议 Swift 使用protocol定义协议:1 protocol
ExampleProtocol {2 var simpleDescription: String { get }3 mutating func adjust
()4 }类型、枚举和结构都可以实现(adopt)协议...
分类:
其他好文 时间:
2014-06-06 07:48:38
阅读次数:
302
protocol Container { typealias ItemType mutating
func append(item: ItemType) mutating func removelast() -> ItemType var count:
Int {get} ...
分类:
其他好文 时间:
2014-06-05 20:10:14
阅读次数:
319