摘要:
阅读全文
摘要:
前提 1 安装了 wsl2 wsl -l -v PS C:\Users\Administrator> wsl -l -v NAME STATE VERSION * Ubuntu-22.04 Running 2 2 安装了 windows terminal 3 创建虚拟网桥 搭建 #### 1. 在 阅读全文
摘要:
###1.自动补齐返回值 option + command + v 阅读全文
摘要:
安装 homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装telnet brew tap theeternalsw0rd/telne 阅读全文
摘要:
os开发有多种设计模式,其中有一种就叫做观察者模式,即Key Value Observing(简称KVO) KVO是Object -C中原声支持的一种机制. C、KVO 实现原理当对一个对象添加观察者,被观察对象的属性值发生变化时,观察者会得到通知,并对变化做出相应的处理。D、KVO 的特性1. 支 阅读全文
摘要:
First, the function creates the main application object (step 3 in the flowchart). If you specify nil as the third argument to UIApplicationMain() (th 阅读全文
摘要:
内存问题 野指针异常:访问所有权的内存,如果想要安全访问,必须确保空间还在(确保访问的内存不是僵尸对象) 内存泄露:空间使用完之后没有及时释放 过度释放:对一块空间释放多次,立刻crash 内存溢出:所有存储空间被占用 管理内存的三种方式 垃圾回收机制:程序员只要开辟存储空间,系统会自动回收内存。J 阅读全文