码迷,mamicode.com
首页 >  
搜索关键字:let    ( 14348个结果
D. Little Girl and Maximum XOR(贪心)
D. Little Girl and Maximum XOR A little girl loves problems on bitwise operations very much. Here's one of them. You are given two integers l and r. Let's consider the values of for all pa...
分类:其他好文   时间:2015-04-10 09:40:40    阅读次数:147
Swift之Boolean
Swift有一个叫Bool的基础布尔类型。布尔值也被称为逻辑值,因为从来它们的值只是ture或者false。Swift提供了两个布尔常量,true和false: let orangesAreOrang = true let turnipsAreDelicious = falseoranges...
分类:编程语言   时间:2015-04-09 23:27:32    阅读次数:157
HDU 1524 A Chess Game(SG函数)
Problem Description: Let's design a new chess game. There are N positions to hold M chesses in this game. Multiple chesses can be located in the same position. The positions are constituted as a topo...
分类:其他好文   时间:2015-04-09 19:53:07    阅读次数:116
ZeroMQ with producer-consumer
Make sure what you need ! Let's see the map below: If your data centre send many many data to you by socket ... Let's see the map again .. So you may know how to use the ...
分类:其他好文   时间:2015-04-09 17:36:26    阅读次数:257
Swift之数字字面常量
不同进制整数字面值按以下原则进行区分表示: 1. 十进制数前边不用加前缀 2. 一个二进制数,加一个0b的前缀 3. 一个八进制数,加一个0o的前缀 4. 一个16进制数,加一个0x的前缀下边是整数字面值为17的不同进制的表示形式: let decimalInteger = 17...
分类:编程语言   时间:2015-04-08 21:29:24    阅读次数:163
The Design of HDFS
HDFS is a filesystem designed for storing very large files with streaming data access patterns, running on clusters of commodity hardware. Let’s examine this statement?in more detail:? Very lar...
分类:其他好文   时间:2015-04-08 06:49:45    阅读次数:128
Swift学习笔记(一)
1,Swift中全局作用域中的代码会被自动当做程序的入口点,所以不需要main函数。同样不需要在每个   语句结尾写上分号。 2,简单值       使用let来声明常量,使用var来声明变量。一个常量的值,在编译的时候,并不需要有明确的值   ,但是你只能为它赋值一次。也就是说你可以用常量来表示这样一个值:你只需要决定一次,但是需要   使用很多次。   var myVariable...
分类:编程语言   时间:2015-04-07 13:51:40    阅读次数:124
swift 基础-4
函数:完成特定任务的代码块,通过名字来表示函数做什么func 函数名(形参:形参类型)->返回类型command +option+0 隐藏右边的框//定义函数 func sayHello(name:String)->String{ let greeting = "hello " + n...
分类:编程语言   时间:2015-04-07 00:42:04    阅读次数:215
getFetchSize()
getFetchSize()returns the number of records that database fetch to your applicaton at a time. By default, the fetch size is 10. Let's assume that your...
分类:其他好文   时间:2015-04-07 00:29:37    阅读次数:250
swift基础-3
fallthrough 贯穿case 可以不必写break 如果不需要知道区间内 每一项的值 可以使用 下划线 —— 来代替变量名 忽略 对该值的访问for index in 1...5{println(index)}求3的10次幂let base = 3let power = 10var answ...
分类:编程语言   时间:2015-04-06 06:18:16    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!