码迷,mamicode.com
首页 >  
搜索关键字:tour    ( 464个结果
Swift学习——A Swift Tour 对象和类
Objects and Classes  对象和类 使用关键字 class 定义一个类,在定义类的属性的时候与常量或者变量的定义相同(继承父类的属性定义不同),方法和函数的定义也相同 class Shape { var numberOfSides = 0 func simpleDescription() -> String { return "A sha...
分类:其他好文   时间:2014-06-20 12:38:10    阅读次数:293
Swift学习——A Swift Tour 函数
Functions and Closures  函数和封闭性(闭包) Functions  函数的使用 Swift中的函数定义和OC中有明显的区别了,使用func定义函数,在括号中定义参数和类型,用 -> 定义返回值类型 func greet(name: String, day: String) -> String { return "Hello \(name), tod...
分类:其他好文   时间:2014-06-20 09:41:20    阅读次数:268
Swift学习——A Swift Tour 枚举和结构体
Enumerations and Structures Enumerations   枚举的使用 使用 enum 定义一个枚举,枚举里面可以关联方法,比如下文中的描述方法 enum Rank: Int { case Ace = 1 case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten case Ja...
分类:其他好文   时间:2014-06-20 09:03:39    阅读次数:322
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
A swift Tour
传统的认为,一个新的语言的第一个应用程序都会打印"Hellow,Word",在Swift中,可以只需要一行代码:pringln("Hello, word") 如果你写过c或者object-c的代码,那么Swift的代码看起来会很收悉,一行代码就可以完成一个程序,你不需要另外导入输入/输出或者字符.....
分类:其他好文   时间:2014-06-05 17:27:47    阅读次数:222
[IOS]《A Swift Tour》翻译(一)
以下翻译内容为原创,转载请注明:来自天天博客:http://www.cnblogs.com/tiantianbyconan/p/3768936.html碎碎念。。。Swift是苹果在WWDC刚发布的新语言,本人也没学过,现在看苹果官方文档一边翻译一边学习,再加上英语水平和对编程理解很有限,有错误的地...
分类:移动开发   时间:2014-06-05 14:33:42    阅读次数:345
Swift语言概览
基本概念 注:这一节的代码源自The Swift Programming Language中的A Swift Tour。   Hello, world 类似于脚本语言,下面的代码即是一个完整的Swift程序。 println("Hello, world")    变量与常量 Swift使用var声明变量,let声明常量。 var myVariable = 42 myVariabl...
分类:其他好文   时间:2014-06-04 13:18:43    阅读次数:343
POJ 2677(双调旅行商问题<bictonicTSP>
Tour Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 3470 Accepted: 1545 Description John Doe, a skilled pilot, enjoys traveling. While on vacation, he rents a...
分类:其他好文   时间:2014-05-21 08:24:18    阅读次数:354
POJ 2677 Tour 双调旅行商 dp, double+费用流
题目链接:点击打开链接 题意:给定二维平面上的n个点 从最左端点到最右端点(只能向右移动) 再返回到到最右端点(只能向左移动,且走过的点不能再走) 问最短路。 dp 点击打开链接 #include #include #include #include #include #include #include #include using namespace std; #de...
分类:其他好文   时间:2014-05-18 08:57:27    阅读次数:258
POJ 2677 旅行商问题 双调dp或者费用流
Tour Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3408   Accepted: 1513 Description John Doe, a skilled pilot, enjoys traveling. While on vacation, he rents...
分类:其他好文   时间:2014-05-18 07:16:45    阅读次数:385
464条   上一页 1 ... 44 45 46 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!