Python/C++教程 第18页
C语言 __LINE__-猿说编程

C语言 __LINE__

C语言 __LINE__ - ANSI C 定义了许多宏。在编程中您可以使用这些宏,但是不能直接修改这些预定义的宏。 __DATE__ 当前日期,一个以 “MMM DD YYYY” 格式表示的字符串常量。 __TIME__ 当前时间...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028723
C语言代码注释-猿说编程

C语言代码注释

C语言代码注释 - 注释是为了使别人能看懂你写的程序,也为了使你在若干年后还能看得懂你曾经写的程序而设定的。 注释是写给程序员看的,不是写给电脑看的。所以注释的内容,C语言编译器在编译时...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028726
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,可以查看...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
028590
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 是否已...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028270
C语言变量声明和定义-猿说编程

C语言变量声明和定义

C语言变量声明和定义 - 在定义变量时,变量名可以是字母、数字和下划线的组合。但是也不是随便的组合,要注意以下几个命名规则: 1.变量名的开头必须是字母或下划线,不能是数字 2.变量名中的字...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028233
C语言 switch 语句-猿说编程

C语言 switch 语句

C语言 switch 语句 - 在 C 语言中,switch 语句和 if / else 类似,都可以作为条件分支判断,当分支判断较少的适合推荐使用 if / else ;当分支判断比较多的时候推荐使用 switch 语句 1.程序执...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028233
Windows OpenGL 图像绿幕抠图-猿说编程

Windows OpenGL 图像绿幕抠图

OpenGL 绿幕抠图,OpenGL 抠图,OpenGL 绿幕抠图设置,绿幕抠图调节,OpenGL绿幕抠图调节设置,OpenGL 教程,OpenGL ES特效,
Python 递归函数-猿说编程

Python 递归函数

一个函数在函数体内部调用自己,这样的函数称为递归函数,递归的次数在 Python 是有限制的,默认递归次数是 997 次,超过 997 次会报错:RecursionError.
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028152
Python GIL 锁-猿说编程

Python GIL 锁

Python GIL锁 - Python 中除了 线程互斥锁Lock 还有 GIL 锁,GIL 锁全称:Global Interpreter Lock,任何 Python 线程threading 执行前,必须先获得 GIL 锁才能执行,当线程获取到 GIL 锁之后,...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028123
Python 字符串-猿说编程

Python 字符串

二.Python字符串运算符 三.字符串构造 四.字符串截取 五.字符串替换 – replace()方法 六.字符串大小写 字符串中的每一个字符都有一个默认的索引值,从左到右默认重0开始,依次递增;从右往左默...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
028021