Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

C 中的 inline 用法 | 菜鸟教程 #289

Open
jwenjian opened this issue Aug 12, 2020 · 0 comments
Open

C 中的 inline 用法 | 菜鸟教程 #289

jwenjian opened this issue Aug 12, 2020 · 0 comments

Comments

@jwenjian
Copy link
Owner

Card C++ 中的 inline 用法 | 菜鸟教程 added the to the C家族 list in the 遇见 board at August 12, 2020 at 02:31PM

 

> 1、引入 inline 关键字的原因 在 c/c++ 中,为了解决一些频繁调用的小函数大量消耗栈空间(栈内存)的问题,特别的引入了 inline 修饰符,表示为内联函数。 栈空间就是指放置程序的局部数据(也就是函数内数据)的内存空间。 在系统下,栈空间是有限的,假如频繁大量的使用就会造成因栈空间不足而导致程序出错的问题,如,函数的死循环递归调用的最终结果就是导致栈内存空间枯竭。 下面我们来看一个例子: 实例 [mycode3 ..

 

---

 

View on Trello

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant