当你在使用Swift时会发现一些常用的函数不!见!了! 比如 String:    s.count()  s.contains() Array: a.indexOfObeject(t:<T>) 我看网上有人说用extension Array的方法调用NSArray的indexOfObject来实现 extension Array { func indexOfObject(object:AnyObject) -> Int? { return (self as NSArray).indexO…
The count-and-say sequence is the sequence of integers with the first five terms as following: 1. 1 2. 11 3. 21 4. 1211 5. 111221 1 is read off as "one 1" or 11.11 is read off as "two 1s" or 21.21 is read off as "one 2, then one 1…
平时写js经常遇到这样做是不是更快点?但又没有具体简单可测试的工具,最近也倒序看博客园司徒正美 js分类下的文章 [ps:去年灵光一闪,发现看博客园排名前100的博客.按照文章分类倒序看是学习最快的方式 O(∩_∩)O~] 看到这篇文章时 (转)Google Closure: 糟糕的JavaScript http://www.cnblogs.com/rubylouvre/archive/2009/12/07/1615593.html 文中有些 性能优化对比的举例,让我想起去年我寻找js性能基准测…
Swift Method Dispatching When announcing Swift, Apple described it as being much faster than Objective-C. On the web, there is a number of comparsions juxtaposing speed of both languages. In my opinion, the way Swift dispatches method invocations has…
Swift vs Kotlin 这篇文章是想着帮助Android开发快速学习Swift编程语言用的. (因为这个文章的作者立场就是这样.) 我不想写一个非常长, 非常详尽的文章, 只是想写一个快速的版本能让你快速上手工作. 当然这个文章可能也适合于以下人群: 有经验的其他任何语言的开发者, 想学Swift. 一个会Swift的iOS开发者, 想横向对比, 了解学习一下Kotlin. iOS初级程序员, 刚开始学习. 用过Swift, 但是有一阵子没用了, 想快速刷新一下回忆. 基本类型 Swif…
在PHP编程中,在遍历数组的时候经常需要先计算数组的长度作为循环结束的判断条件,而在PHP里面对数组的操作是很频繁的,因此count也算是一个常用函数,下面研究一下count函数的具体实现. 我在github上有对PHP源码更详细的注解.感兴趣的可以围观一下,给个star.PHP5.4源码注解.可以通过commit记录查看已添加的注解. count int count ( mixed $array_or_countable [, int $mode = COUNT_NORMAL ] ) coun…
var scope="global";    function constructFunction(){        var scope="local";        return new Function(" return scope");    }    constructFunction()(); function constructFunction2(){        var scope="local";    …
import Foundation class Hello{ var _name:String?="swift global" init(name:String){ //定义类中有参数的构造方法 _name=name; println("Hello , \(name)"); } init(){ //定义类中无参数的构造方法 println("this is init method"); } func sayHello(){ //定义成员方法 pr…
昨天,我弟抛给我一个js的题,使用类似标题那样的调用方法计算a*b*c*d以致无穷的实现方法.思考了半天,终于理清了它的运行过程,记录于下: 函数体: <!DOCTYPE html> <html> <head> <title>a</title> </head> <body> <p id="a"></p> <script type="text/javascript&…
函数定义 函数是由这样的方式进行声明的:关键字 function.函数名.一组参数,以及置于括号中的待执行代码. 函数的构造语法有这三种: 1.function functionName(arg0, arg1, ... argN) { statements }//function语句 2.var function_name = new Function(arg1, arg2, ..., argN, function_body);//Function()构造函数 3.var func = func…