摘要: 转自:https://www.cnblogs.com/tid-think/p/10616789.html 前段时间搞x264编码测试,传参的时候需要告诉编码器我的原始数据格式是什么,其中在x264.h头文件中定义了如下一堆类型。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 阅读全文
posted @ 2020-08-03 09:14 天使冰王 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: 转自http://blog.chinaunix.net/uid-29025972-id-3847404.html1.层次不同 open是系统调用,返回的是文件句柄,文件的句柄是文件在文件描述副表里的索引。 fopen是ANSIC标准中的C语言库函数,返回的是一个指向文件结构的指针。在不同的系统中应该 阅读全文
posted @ 2020-08-01 10:44 天使冰王 阅读(298) 评论(0) 推荐(0) 编辑
摘要: Lecture 讲述讲授 Reading 阅读, 掌握度10% Audiovisual 视听(看图片、影视), 掌握度20% Demonstration 演示, 掌握度30% Discussion 学生将自己的观点相互交流讨论, 掌握度50% Practice doing 学生动手实践,掌握度75% 阅读全文
posted @ 2020-07-15 20:45 天使冰王 阅读(227) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <fstream> #include <algorithm> #include <cassert> #include <numeric> #include <string> using namespace std; int main() { 阅读全文
posted @ 2020-06-04 17:26 天使冰王 阅读(140) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/25597059https://www.w3schools.com/howto/howto_css_icon_buttons.asphttps://stackoverflow.com/questions/1672879/can-you-add 阅读全文
posted @ 2019-10-24 07:09 天使冰王 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 坑1)<link rel="stylesheet"……新手别写成<link ref="stylesheet" 坑2)<link type="text/css"……新手别写成<link type="css/text" 坑3)表示颜色#后面6位一定要完整,如#00ff00表示绿色,新手别写成#ff00 阅读全文
posted @ 2019-10-21 09:21 天使冰王 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/lijinqi1987/article/details/76691170 librdkafka在c语言的基础上封装了一层c++的API,可以实 阅读全文
posted @ 2019-08-24 16:09 天使冰王 阅读(3528) 评论(0) 推荐(0) 编辑
摘要: 1)an irregular basis,不定期的 2)xxxxxx, for yyyyyy,什么什么什么,目的是啥啥啥啥。 3)xxxxx. For yyyy zzzzz。什么什么什么,对于谁谁谁来说是啥啥啥。 4)Request that xxxx response to confirm tha 阅读全文
posted @ 2019-07-22 13:34 天使冰王 阅读(1444) 评论(0) 推荐(0) 编辑
摘要: 1)要调试需要ggdb开关:gcc hello.c -ggdb -o hello 2)makefile:2: missing separator。解决方法:makefile中的命令必须以Tab开始,且不能为空格 3)unistd.h 是 C 和 C++ 程序设计语言中提供对 POSIX 操作系统 A 阅读全文
posted @ 2019-06-14 19:55 天使冰王 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1)import只是增加了一个文件夹的访问位置,和包名无关。 2)判断eof错误if(err == io.EOF) 3)import的下划线作用:只引用包的init方法,其他方法都不引入。 4)log.Fatal会调用os.Exit(),所以会引起进程退出。 阅读全文
posted @ 2019-06-14 15:58 天使冰王 阅读(163) 评论(0) 推荐(0) 编辑