定义常量:let MAX = 3; (语句结束后,可以加分号,或者不加分号)定义变量:var max = 3;var str = "hello world";定义指定类型变量:var value:Int = 3; (此时类型已指定)输出语句:println(max);多变量输出:println("x...
分类:
移动开发 时间:
2014-09-21 21:01:51
阅读次数:
252
1、shell中如何进行算术计算 A=1; B=2 (1)let C=$A+$B (2)C=$[$A+$B] (3)C=$(($A+$B)) (4)C=`expr $A + $B` (注意运算符前后空格)2、测试方法 [ expression ] [ [expression] ] ...
分类:
其他好文 时间:
2014-09-20 01:01:56
阅读次数:
285
Day by day number of Kangaroos is decreasing just like
tiger, whale or lions. So I decided to make them a sanctuary
where they will live peacefully. I do not let visitors go
near them. So I planted...
分类:
其他好文 时间:
2014-09-19 03:26:24
阅读次数:
278
最早接触DHCP还是以前在宿舍上网的时候,有过一两次怎么连接无线还都是上不去,后来查到自己的DHCP客户端服务被关掉了,手动开启后才能上的去网。
那么,DHCP是如何动态分配IP的呢?let's figure it out!
首先还是形象的看一下大致过程:...
分类:
其他好文 时间:
2014-09-16 12:38:40
阅读次数:
216
o modify the badge under ios8 you have to ask for permissions let settings = UIUserNotificationSettings(forTypes: UIUserNotificationType.Badge, cat...
分类:
移动开发 时间:
2014-09-15 15:31:19
阅读次数:
212
主要内容
高阶过程:以过程为参数和/或返回值的过程
lambda 表达式
let 表达式
用过程作为解决问题的通用方法
求函数的 0 点
求函数的不动点
返回过程值
过程是语言里的一等公民 (first-class object)
1.3.1高阶过程
过程是抽象,一个过程描述了一种对数据的复合操作,如求立方过程:(define (cube...
分类:
其他好文 时间:
2014-09-14 18:03:27
阅读次数:
277
一、基本数据类型
Int、Float、Double、Bool、Character、String(首字母都大写)
Array、Dictionary、元组类型(Tuple)、可选类型(Optional)
只写几个基本,与OC不同的复习小结一下。
指定数据类型:
let a:Int = 10 //指定数据类型。 一般不需要指定,会自动判断类型。 (使用时需初始化)1.1 整形
//1....
分类:
移动开发 时间:
2014-09-14 07:53:26
阅读次数:
297
考察w3school上的一个实际的例子[1]:Let AJAX change this text通过 AJAX 改变内容 关注下标红部分的代码的顺序,如果把代码改成如下的顺序:Let AJAX change this text通过 AJAX 改变内容 Let AJAX change this t.....
分类:
其他好文 时间:
2014-09-13 21:18:25
阅读次数:
228
http://poj.org/problem?id=1860DescriptionSeveral currency exchange points are working in our city. Let us suppose that each point specializes in two p...
分类:
其他好文 时间:
2014-09-13 20:08:45
阅读次数:
410
MedianTime Limit:1000MSMemory Limit:65536KTotal Submissions:3866Accepted:1130DescriptionGivenNnumbers,X1,X2, ... ,XN, let us calculate the difference ...
分类:
其他好文 时间:
2014-09-13 10:34:44
阅读次数:
236