https://zhuanlan.zhihu.com/p/77043332 一,multi_complie 还是 shader_feature shader_feature 和 multi_complie 是两个很相似的预编译指令,在Editor模式下,他们是几乎没有区别的。 共同点是: 声明Key ...
分类:
编程语言 时间:
2020-04-29 23:10:15
阅读次数:
179
excel: Variant;WBk, WS, RG: OleVariant;tryExcel := GetActiveOleObject('Excel.Application');exceptExcel := CreateOleObject('Excel.Application');end;wbk ...
分类:
其他好文 时间:
2020-04-28 09:38:12
阅读次数:
133
CSS 选择符有哪些 1.id选择器( id) 2.类选择器(.class) 3.标签选择器(div,h1,p) 4.相邻选择器(h1 + p) 5.子选择器(ul li) 6.后代选择器(li a) 7.通配符选择器( ) 8.属性选择器(a[title]) 9.伪类选择器(a:hover,li: ...
分类:
编程语言 时间:
2020-04-21 12:49:25
阅读次数:
73
网络视频m3u8解密及ts文件合并 参考了两篇博客: https://blog.csdn.net/weixin_41624645/article/details/95939510 https://blog.csdn.net/u014484783/article/details/79350392 再加 ...
分类:
其他好文 时间:
2020-04-11 23:53:46
阅读次数:
154
1. string容器 string容器常用操作 string 构造函数 string();//创建一个空的字符串 例如: string str; string(const string& str);//使用一个string对象初始化另一个string对象 string(const char* s) ...
分类:
其他好文 时间:
2020-04-10 10:32:01
阅读次数:
69
相关资料: https://www.it1352.com/624177.html 1 unit Unit2; 2 3 interface 4 5 uses 6 System.SysUtils, System.Types, System.UITypes, System.Classes, System. ...
分类:
移动开发 时间:
2020-04-08 09:42:13
阅读次数:
92
一个 KiCad 工程项目可以生成哪些数据? KiCad 的工程文件包含了 eeschmea pcbnew lib 等文件。 通过这些文件可以产生多个生产文件,比如 Gerber、Variant BOM、netlist、Assembly Drawing 等。 这些生产的文件都是通过脚本或工具自动产生 ...
分类:
其他好文 时间:
2020-04-05 13:24:39
阅读次数:
91
typeof 用于获取一个对象的类型,比如: unsigned int a = 1; // typeof (a) is unsigned int short b = 2; // typeof (b) is short offsetof #define offsetof(TYPE, MEMBER) ( ...
分类:
其他好文 时间:
2020-04-02 14:22:25
阅读次数:
71
VARIANT and VARIANTARG Use VARIANTARG to describe arguments passed within DISPPARAMS, and VARIANT to specify variant data that cannot be passed by ref ...
分类:
其他好文 时间:
2020-04-02 10:24:40
阅读次数:
76
//C++中的DLL函数原型为 //extern "C" __declspec(dllexport) bool 方法名一(const char* 变量名1, unsigned char* 变量名2) //extern "C" __declspec(dllexport) bool 方法名二(const ...
分类:
编程语言 时间:
2020-03-23 09:54:22
阅读次数:
79