上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 摘自:http://www.elecfans.com/emb/20190402898901.html ELF(Executable and Linkable Format)即可执行连接文件格式,是一种比较复杂的文件格式,但其应用广泛。与linux下的其他可执行文件(a.out,cof)相比,它对节的 阅读全文
posted @ 2021-08-25 08:52 古锁阳关 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://www.cnblogs.com/uu58250/p/12796443.html Electron是由Github开发,用HTML、CSS和JavaScript来构建跨平台桌面应用程序的一个开源库。 Electron通过将Chromium和Node.js合并到同一个运行时环境中, 阅读全文
posted @ 2021-08-23 11:19 古锁阳关 阅读(359) 评论(0) 推荐(0) 编辑
摘要: The first compiler was build by John Backum and his group between 1954 and 1957 at IBM.编译器就是将高级语言翻译为低级语言的程序。 FORTRAN one was the first successful high 阅读全文
posted @ 2021-05-14 09:33 古锁阳关 阅读(480) 评论(0) 推荐(0) 编辑
摘要: http://www.topgoer.com/ 阅读全文
posted @ 2021-05-10 15:47 古锁阳关 阅读(73) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/tiger2soft/p/5094917.html R命令的使用 作用:观看和修改寄存器的值。 在提示符“-”下输入以下命令:R。DEBUG将会显示出当前所有寄存器和标志位的状态。 接下来再输入命令rax。在提示符“:”后输入100。该命令的作用是将寄 阅读全文
posted @ 2021-04-14 08:25 古锁阳关 阅读(1328) 评论(0) 推荐(0) 编辑
摘要: (function(console){ console.save = function(data, filename){ if(!data) { console.error('Console.save: No data') return; } if(!filename) filename = 'co 阅读全文
posted @ 2021-04-08 13:47 古锁阳关 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/wangqiulin123456/article/details/8284939 用途一:与#define的区别 typedef 行为有点像 #define 宏,用其实际类型替代同义字。不同点是 typedef 在编译时被解释,因此让编译器来应付 阅读全文
posted @ 2021-04-02 15:40 古锁阳关 阅读(358) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> typedef unsigned char lu_byte; #define CommonHeader struct GCObject *next; lu_byte tt; lu_byte marked #define C 阅读全文
posted @ 2021-04-02 12:51 古锁阳关 阅读(52) 评论(0) 推荐(0) 编辑
摘要: #define与typedef #define(宏定义)只是简单的字符串代换(原地扩展),它本身并不在编译过程中进行,而是在这之前(预处理过程)就已经完成了。 typedef是为了增加可读性而为标识符另起的新名称(仅仅只是个别名),它的新名字具有一定的封装性,以致于新命名的标识符具有更易定义变量的功 阅读全文
posted @ 2021-04-01 14:39 古锁阳关 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://www.cnblogs.com/liuning8023/p/4286044.html 本文内容 动态类型语言(Dynamically Typed Language) 静态类型语言(Statically Typed Language) 比较 记得我刚毕业时在第一家公司,离职那天领 阅读全文
posted @ 2021-03-16 08:55 古锁阳关 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页