摘要: The IBM-PC, short for International Business Machines Personal Computer, was one of the earliest mass-produced personal computers. It was introduced b 阅读全文
posted @ 2024-07-01 20:03 WJnuHhail 阅读(1) 评论(0) 推荐(0) 编辑
摘要: ① 概念引入 多用于复用性强的函数(代码量较少具有特定功能的函数) 坏处:让你的代码上下文很臃肿(冗余) 好处: 在复用性强的函数调用的时候直接插入函数代码段而不是进行函数跳转(编译器弄的),减少性能消耗提高运行效率。 减少函数调用开销:函数调用涉及压栈、跳转等操作,会产生额外的(CPU性能+内存) 阅读全文
posted @ 2024-07-01 10:15 WJnuHhail 阅读(11) 评论(0) 推荐(0) 编辑