06 2016 档案

摘要:内存分配的历史 编程语言的发展史就像一份记录,记载着编程语言不断走向抽象化和自动化的过程。 静态分配 静态分配是最简单的分配策略。程序中所有的变量名都在编译时绑定在某个存储位置上,这些绑定不会在运行时改变。静态分配有 3 个局限: 每个数据结构的大小必须在编译时可知。 过程是不能递归的,因为对于过程中的每个活动,局部变量在内存中共享相同的位置。 无法动态的创建数据结构。 不过... 阅读全文
posted @ 2016-06-26 00:55 7hens 阅读(290) 评论(0) 推荐(0)
摘要:JassHelper 0.A.0.0 Although World Editor's Jass compiler was finally replaced by PJass using WEHelper , there were a couple of other annoyances that still needed fixing, that's the reason this proj... 阅读全文
posted @ 2016-06-18 16:57 7hens 阅读(1282) 评论(0) 推荐(0)
摘要:ZINC 0.A.0.0Table of contentsI. Why Zinc? C-like syntax Less verbosity Readability Segregation Structured programming vJass interoperability Do not "live a lie" Rigidit... 阅读全文
posted @ 2016-06-18 16:55 7hens 阅读(323) 评论(0) 推荐(0)
摘要:什么是 Notification Notification 是一种具有全局效果的通知,它会展现在屏幕的顶端,首先会表现行为一个图标,当用户向下滑动的时候,会展示出通知的具体内容。 因为 Android 的快速发展,随着 android 版本的快速升级,导致了一些兼容性问题。对于 Notification 而言,Android 3.0 是一个分水岭,在之前构建 Notification ... 阅读全文
posted @ 2016-06-18 16:52 7hens 阅读(222) 评论(0) 推荐(0)