ChatGPT 3.5 国内中文镜像站免费使用啦
猿说编程-猿说编程-第36页
C语言 回调函数 callback-猿说编程

C语言 回调函数 callback

C语言 回调函数 callback - 函数指针,其本质是一个指针,指向的是一个函数的地址。 指针函数,即返回指针的函数,其本质是一个函数,而该函数的返回值是一个指针。
Python sys模块-猿说编程

Python sys模块

在Python sys 模块提供对解释器使用或维护的一些变量的访问,以及与解释器强烈交互的函数!
C语言 使用指针遍历数组-猿说编程

C语言 使用指针遍历数组

C语言 使用指针遍历数组 - 数组中的每个元素都有一个序号,这个序号从 0 开始,称为下标 index,例如,a[0] 表示第 1 个元素,a[3] 表示第 4 个元素。数组是一个整体,它的内存是连续的 当知道...
AVFoundation - AVAssetExportSession 导出视频到沙盒目录-猿说编程

AVFoundation – AVAssetExportSession 导出视频到沙盒目录

AVFoundation - AVAssetExportSession 导出视频到沙盒目录 AVAsset 是 AVFoundation 框架中的核心的类,它提供了基于时间的音视频数据.(如电影文件,视频流),一个 asset 包含很多轨道的结合,如 au...
Python frozenset 集合-猿说编程

Python frozenset 集合

Python frozenset 集合 - 如果尝试修改 frozenset 集合的数据,即使用 add 添加数据,程序报错:AttributeError: ‘frozenset’ object has no attribute ‘add’!与 Python set 集合区别在于 ...
Python raw_input 函数-猿说编程

Python raw_input 函数

Python raw_input 函数 - Python 3.x 版本中并没有内置函数 raw_input,如果在 Python 3.x 版本中使用内置函数 raw_input,会提示:NameError: name ‘raw_input’ is not defined input 返回的...
C语言 memcpy 和 strcpy 函数区别-猿说编程

C语言 memcpy 和 strcpy 函数区别

C语言 memcpy 和 strcpy 函数区别 - 1.strcpy 函数和 strcpy_s 函数在拷贝过程中,如果遇到''结束符,那么直接结束拷贝;memcpy 函数拷贝过程中就算遇到''结束符也不会结束; 2.如果使用 memcpy...
C语言 va_start 宏-猿说编程

C语言 va_start 宏

C语言 va_start 宏 - C 编译器通常提供了一系列处理这种情况的宏,以屏蔽不同的硬件平台造成的差异,增加程序的可移植性。这些宏包括 va_start 、va_arg 、va_end 等,一般三者需要配套使用。 #i...
AVFoundation - AVAssetImageGenerator 截图-猿说编程

AVFoundation – AVAssetImageGenerator 截图

AVAssetImageGenerator 截图 - AVAssetImageGenerator 是用来提供视频的缩略图或预览视频的帧的类.可以用AVAsset 来初始化, + (instancetype)assetImageGeneratorWithAsset:(AVAsset *)asset; ...
AVFoundation – AVAssetTrackSegment 不可变轨道片段-猿说编程

AVFoundation – AVAssetTrackSegment 不可变轨道片段

AVFoundation – AVAssetTrackSegment 不可变轨道片段 - AVAssetTrackSegment 不可变轨道片段;AVCompositionTrackSegment 可变轨道片段,继承自 AVAssetTrackSegment;

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