Python/C++教程 第58页
Python range 函数-猿说编程

Python range 函数

Python range 函数 - Python range 函数可创建一个整数列表,一般用在 for 循环中,语法如下: ''' 参数说明: start: 计数从 start 开始,默认是从0开始,例如:range(5)等价于range(0, 5...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
011141
C语言 函数指针和指针函数区别-猿说编程

C语言 函数指针和指针函数区别

C语言 函数指针和指针函数区别 - 函数指针,其本质是一个指针,指向的是一个函数的地址。 指针函数,即返回指针的函数,其本质是一个函数,而该函数的返回值是一个指针。 需要注意得是:函数指...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
013821
C/C++ GetModuleFileName 获取指定 exe 和 dll 路径-猿说编程

C/C++ GetModuleFileName 获取指定 exe 和 dll 路径

C/C++ GetModuleFileName 获取指定 exe 和 dll 路径 - GetModuleFileName 函数返回当前进程已加载 可执行文件或 DLL 文件的完整路径名(以''终止),该模块必须由当前进程地址空间加载。 DWORD WI...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
031521
IOS – OpenGL ES 图像色调分离噪点效果 GPUImagePosterizeFilter-猿说编程

IOS – OpenGL ES 图像色调分离噪点效果 GPUImagePosterizeFilter

GPUImage - 设置色调分离噪点效果 GPUImagePosterizeFilter- GPUImage 共 125 个滤镜, 分为四类 1、Color adjustments : 31 filters , 颜色处理相关 2、Image processing : 40 filters , 图像处...
Python oct 函数-猿说编程

Python oct 函数

Python oct 函数 - oct 函数也是 Python 内置函数,主要将一个整数转为八进制,与 ord 函数 / chr 函数 有点类似; oct 函数将一个整数转换成 8 进制字符串,语法如下: ''' 参数: x – 整数; ...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
014911
C语言 const 修饰函数返回值-猿说编程

C语言 const 修饰函数返回值

C语言 const 修饰函数 - const 是 constant 的缩写,“恒定不变”的意思。被 const 修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性。所以很多 C++ 程序设计书籍建议:“Us...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
146661
C语言 fopen 函数-猿说编程

C语言 fopen 函数

C语言 fopen 函数 - C 语言 fopen 函数表示以指定的模式,打开一个文件,函数声明如下: /* *描述:使用指定的模式打开或者读写指定的文件 * *参数: * [in] filename:文件路径 * [in] mode:...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
016531
Xcode – Xcode replace 使用正则表达式替换文字-猿说编程

Xcode – Xcode replace 使用正则表达式替换文字

Xcode replace使用正则表达式替换文字,Xcode replace,Xcode replace正则表达式,Xcode replace替换文字,object-c,猿说编程,
猿说编程的头像-猿说编程钻石会员猿说编程4年前
07911
iOS NSString 和 bool 相互转换-猿说编程

iOS NSString 和 bool 相互转换

iOS NSString 和 bool 相互转换 NSString *str1 = @'YES'; NSString *str2 = @'NO'; //ok NSLog(@'str1 = %d str2 = %d',[str1 boolValue],[str2 boolValue]); BOOL a = YES; BOOL b = NO; NSSt...
猿说编程的头像-猿说编程钻石会员猿说编程4年前
016621
Xcode – Xcode13 The Legacy Build System will be removed in a future release-猿说编程

Xcode – Xcode13 The Legacy Build System will be removed in a future release

Xcode – Xcode13 The Legacy Build System will be removed in a future release - The Legacy Build System will be removed in a future release. You can configure the selected build sys...
猿说编程的头像-猿说编程钻石会员猿说编程3年前
07071