引言 定时器:A timer waits until a certain time interval has elapsed and then fires, sending a specified message to a target object. 翻译如下:在固定的时间间隔被触发,然后给指定目标发送消息.总结为三要素吧:时间间隔.被触发.发送消息(执行方法) 按照官方的描述,我们也确实是这么用的:但是里面有很多细节,你是否了解呢? 它会被添加到runloop,否则不会运行,当然添加的run…
转载请注明出处:https://www.cnblogs.com/kelamoyujuzhen/p/9427555.html pass by value vs. pass by reference (to const) pass by value是整包传递,不管这个包多大.传的动作实际上是压到funtion stack memory中.stack memory中有个好处就是Automatic memory management and garbage collection,但是整包传递的做法实在不…
Visual Studio Code (简称 VS Code)是由微软研发的一款免费.开源的跨平台文本(代码)编辑器.在我看来它是「一款完美的编辑器」. 本文是有关 VS Code 的特性介绍与配置指南,相关设置主要针对 Mac OS X 平台.在快捷键部分, ⌘ 指 Command 键,⇧ 指 Shift 键,⌃ 指 Control 键,⌥ 指 Option/Alt 键. 1. Visual Studio Code 特性简介 1.1 Git 集成 如上图所示,VS Code 默认集成了 Git…
创建Object ① 在uc脚本中使用new运算符来创建 /********************************************************************************** outer : The value for the new object's Outer variable. The default value is None, which means the object is created within the "transient…