上一页 1 ··· 461 462 463 464 465 466 467 468 469 ··· 622 下一页

2020年1月19日

摘要: Catalog对象(根对象) https://www.cnblogs.com/wlstm/p/11152142.html 我的文档: obj<</AcroForm <</Fields []>>/Metadata 3 0 R/Pages 4 0 R/Type /Catalog>>endobj3 0 o 阅读全文
posted @ 2020-01-19 11:01 lydstory 阅读(483) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/51eb811ba935 阅读全文
posted @ 2020-01-19 10:59 lydstory 阅读(216) 评论(0) 推荐(0)
摘要: 1.字符串输出 CFX_ByteString word = GetNextWord(bIsNumber); std::cout<<word.GetBuffer(word.GetLength())<<std::endl; 阅读全文
posted @ 2020-01-19 10:31 lydstory 阅读(328) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/chym_200888/article/details/2742351 pages对象(页面组对象),/Type /Pages 说明自身的属性,对象的类型为页码,/Count 1说明页码数量为1,/Kids [4 0 R]说明它的孩子、页的对象号为4,如果 阅读全文
posted @ 2020-01-19 10:11 lydstory 阅读(518) 评论(0) 推荐(0)

2020年1月18日

摘要: https://blog.csdn.net/steve_cui/article/details/81912528 PDF文件是由对象集合组成的,包括:boolean(布尔型),numberic(数值型),string(字符串型),name(名字型),array(数组型),dictionary(字典型 阅读全文
posted @ 2020-01-18 17:40 lydstory 阅读(1114) 评论(0) 推荐(0)

2020年1月17日

摘要: %PDF-1.7 pdf文件是从文件最后开始读的,我们以某一pdf为例: 示例pdf文档的地址在https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/AnimationGuide/AnimationGuide.p 阅读全文
posted @ 2020-01-17 16:03 lydstory 阅读(912) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> //获取文件的大小 int get_file_size(int f) { struct stat st; fstat(f, &st); return st.st_size; } int main(vo 阅读全文
posted @ 2020-01-17 14:02 lydstory 阅读(328) 评论(0) 推荐(0)
摘要: 程序软件的大局,设计 商业 美观 实现框架 使用那种技术 qt electron 技术选型 产品市场 程序细节: 线程 访问数据方式 mvc之类层级结构 内存 分配 数据结构 链表 单链表 循环链表 二叉树 二分查找 甚至计算加减法用位操作等 优化细节 c语言的 内存 分配 少用new delelt 阅读全文
posted @ 2020-01-17 11:33 lydstory 阅读(114) 评论(0) 推荐(0)
摘要: #include <iostream> typedef unsigned int FX_DWORD; typedef unsigned long long FX_UINT64; typedef unsigned int FX_UINTPTR; int main() { FX_DWORD i = ((FX_DWORD)(FX_UINTPTR)1) >> 4; std::cout << i << st 阅读全文
posted @ 2020-01-17 11:24 lydstory 阅读(142) 评论(0) 推荐(0)
摘要: 这是位运算符中的右移运算符:a>>4表示将a的个二进制位右移4位,移到右端的低位被舍弃,对无符号数,高位补0例如:a=017时:a的值用二进制形式表示为:00001111,a>>4为:00000000|1111【后面的1111舍弃】右移一位相当于除以2,右移n位,就相当于除以2^n。 阅读全文
posted @ 2020-01-17 10:59 lydstory 阅读(2352) 评论(0) 推荐(0)
上一页 1 ··· 461 462 463 464 465 466 467 468 469 ··· 622 下一页

导航