摘要:<button id="make-promise">Make a promise!</button> <div id="log"></div> "use strict" ; let promiseCount = 0; function testPromise() { const thisPromis
阅读全文
posted @ 2025-01-22 09:45
|
|
|
随笔分类 - 知识点
各种技术知识点
摘要:<button id="make-promise">Make a promise!</button> <div id="log"></div> "use strict" ; let promiseCount = 0; function testPromise() { const thisPromis
阅读全文
posted @ 2025-01-22 09:45
摘要:关于lib和dll的区别如下:(1)lib是编译时用到的,dll是运行时用到的。如果要完成源代码的编译,只需要lib;如果要使动态链接的程序运行起来,只需要dll。(2)如果有dll文件,那么lib一般是一些索引信息,记录了dll中函数的入口和位置,dll中是函数的具体内容;如果只有lib文件,那么
阅读全文
posted @ 2016-02-28 10:53
|
|