码迷,mamicode.com
首页 >  
搜索关键字:cyclic tour    ( 613个结果
Swift 初见
http://numbbbbb.gitbooks.io/-the-swift-programming-language-/chapter1/02_a_swift_tour.html本页内容包括:简单值(Simple Values)控制流(Control Flow)函数和闭包(Functions an...
分类:其他好文   时间:2014-06-28 18:55:25    阅读次数:279
Swift学习——Swift基础详解(一)
注:由于基础部分在Swift Tour 中已经大体的说明了,所以在详解中不会达到100%的原文释义 Constants and Variables  常量和变量 常量和变量都需要声明名称和类型(作为程序员,这些基础也就不说了),常量一次赋值不能改变,变量的值可以改变 Declaring Constants and Variables   声明常量和变量 常量和变量在...
分类:其他好文   时间:2014-06-27 07:53:38    阅读次数:183
C++学习指南
转载于stackoverflow:http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list 感谢George Stocker的总结Reference Style - All Levels A Tour...
分类:编程语言   时间:2014-06-25 13:28:14    阅读次数:314
Cloneable接口和循环冗余校验算法
1Cloneable接口实现该接口的类可以调用clone()方法合法地对该类实例进行按字段复制。按照惯例,实现此接口的类应该使用公共方法重写Object.clone(它是受保护的)2循环冗余校验算法循环冗余校验(英语:Cyclic redundancy check,通称“CRC”)是一种根据网络数据...
分类:其他好文   时间:2014-06-25 00:59:04    阅读次数:417
Swift语言官方文档翻译(2)
A Swift Tour...
分类:其他好文   时间:2014-06-18 00:54:56    阅读次数:244
http://numbbbbb.github.io/the-swift-programming-language-in-chinese/chapter1/02_a_swift_tour.html
http://numbbbbb.github.io/the-swift-programming-language-in-chinese/chapter1/02_a_swift_tour.html
分类:Web程序   时间:2014-06-13 18:50:14    阅读次数:331
A Swift Tour(3) - Functions and Closures
Functions and Closures使用func来声明函数,通过括号参数列表的方式来调用函数,用 --> 来分割函数的返回类型,参数名和类型,例如:func greet(name: String, day: String) -> String { return "Hello \...
分类:其他好文   时间:2014-06-11 07:48:02    阅读次数:254
Swift学习——A Swift Tour 协议和扩展
Protocols and Extensions Protocols  协议的使用 使用关键字 protocol 定义一个协议 protocol ExampleProtocol { var simpleDescription: String { get } mutating func adjust() } 类,枚举和结构体都可以实现协议 class SimpleC...
分类:其他好文   时间:2014-06-08 17:09:31    阅读次数:254
A Swift Tour(4) - Objects and Classes
Objects and Classes(对象和类)用 class 关键字后面跟一个类名来创建一个class,在一个类中声明 常亮或变量,他存在于当前类的上下文,函数的方法是同样的var numberOfSides = 0 let numberOfSidesLet = 1 func...
分类:其他好文   时间:2014-06-08 00:44:09    阅读次数:383
Cyclic Tour HDUOJ 费用流
Cyclic TourTime Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/65535 K (Java/Others)Total Submission(s): 1399Accepted Submission(s): 712Problem ...
分类:其他好文   时间:2014-06-08 00:32:29    阅读次数:284
613条   上一页 1 ... 58 59 60 61 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!