ChatGPT 3.5 国内中文镜像站免费使用啦
猿说编程-猿说编程-第18页
C语言代码注释-猿说编程

C语言代码注释

C语言代码注释 - 注释是为了使别人能看懂你写的程序,也为了使你在若干年后还能看得懂你曾经写的程序而设定的。 注释是写给程序员看的,不是写给电脑看的。所以注释的内容,C语言编译器在编译时...
Python中文编码-猿说编程

Python中文编码

Python 到目前为止,一共有两个版本,分别是 2.x 和 3.x 版本,根据官方正式通知 2020 年停止对 Python 更新和维护,距离今天还有 110 天左右,所以正在学习Python 的小伙伴应该暗中庆幸一波。 ...
C语言 __LINE__-猿说编程

C语言 __LINE__

C语言 __LINE__ - ANSI C 定义了许多宏。在编程中您可以使用这些宏,但是不能直接修改这些预定义的宏。 __DATE__ 当前日期,一个以 “MMM DD YYYY” 格式表示的字符串常量。 __TIME__ 当前时间...
Xcode - Xcode 提示 there is no memory profiling because NSZombieEnabled is enabled-猿说编程

Xcode – Xcode 提示 there is no memory profiling because NSZombieEnabled is enabled

Xcode - Xcode如何解决Memory不显示内存使用的问题 - Xcode 显示 there is no memory profiling because NSZombieEnabled is enabled,打开 Diagnostics 之后找到 Memory Management,可以查看...
Xcode – Mac CocoaPods 更新到最新版本-猿说编程

Xcode – Mac CocoaPods 更新到最新版本

Xcode – Mac CocoaPods 更新到最新版本 - 1.查看当前 CocoaPods 版本 pod --version 2.更新 CocoaPods 版本到最新 1.pod setup 2.sudo gem install cocoapods //或使用sudo gem install -n /us...
OpenGL ES EGL eglChooseConfig-猿说编程

OpenGL ES EGL eglChooseConfig

EGLConfigs 是一个用来描述 EGLSurface 配置信息的数据类型。一般来说,选择配置的方法有两种: 方法一:系统支持的配置 eglGetConfigs(跨平台时会自动获取系统支持的配置) 方法二:自定义配置...
Python GIL 锁-猿说编程

Python GIL 锁

Python GIL锁 - Python 中除了 线程互斥锁Lock 还有 GIL 锁,GIL 锁全称:Global Interpreter Lock,任何 Python 线程threading 执行前,必须先获得 GIL 锁才能执行,当线程获取到 GIL 锁之后,...
Python 递归函数-猿说编程

Python 递归函数

一个函数在函数体内部调用自己,这样的函数称为递归函数,递归的次数在 Python 是有限制的,默认递归次数是 997 次,超过 997 次会报错:RecursionError.
Xcode - Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier-猿说编程

Xcode – Embedded binary’s bundle identifier is not prefixed with the parent app’s bundle identifier

Xcode - Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier - 如果是直接从网上下载的工程,首先检查工程 TARGETS 下的 Bundle Identifier 是否已...
C语言 switch 语句-猿说编程

C语言 switch 语句

C语言 switch 语句 - 在 C 语言中,switch 语句和 if / else 类似,都可以作为条件分支判断,当分支判断较少的适合推荐使用 if / else ;当分支判断比较多的时候推荐使用 switch 语句 1.程序执...

ChatGPT 3.5 国内中文镜像站免费使用啦