<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Inline Alignment</title><link>http://www.bing.com:80/search?q=Inline+Alignment</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Inline Alignment</title><link>http://www.bing.com:80/search?q=Inline+Alignment</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>What is the difference between "in-line" and "inline"</title><link>https://ell.stackexchange.com/questions/195035/what-is-the-difference-between-in-line-and-inline</link><description>An inline function, which I mentioned above, is one that the compiler copies into the code everywhere it is needed, rather than making a function call - which is relatively expensive at run-time - and having the code sitting in just one place, ready to be called from elsewhere.</description><pubDate>Sun, 29 Mar 2026 20:38:00 GMT</pubDate></item><item><title>知乎</title><link>https://www.zhihu.com/question/7485460918</link><description>知乎</description><pubDate>Mon, 30 Mar 2026 01:24:00 GMT</pubDate></item><item><title>关于内联 (inline)函数定义以及调用问题？ - 知乎</title><link>https://www.zhihu.com/question/50395130</link><description>从c++11以后，inline关键字和内联已经几乎没有关系了。 inline 说明符 - cppreference.com inline本来就只是给编译器一个建议，希望编译器进行内联优化。 但是对现代编译器而言，是否优化和你有没有加inline已经没有太大关系了。</description><pubDate>Tue, 31 Mar 2026 05:27:00 GMT</pubDate></item><item><title>C++ inline 有什么用？？ - 知乎</title><link>https://www.zhihu.com/question/24185638</link><description>inline命名空间 inline命名空间是C++11标准中引入的关键词，对于一个用inline修饰的内嵌命名空间而言，它所包含的成员在可见性上如同声明在外围命名空间中一样，所以inline之于命名空间更具有字面上的含义：将内嵌命名空间在外围命名空间中“展开”。</description><pubDate>Mon, 16 Mar 2026 01:41:00 GMT</pubDate></item><item><title>C++ 的 inline 是从什么时候开始，用来表示同一个函数可以被多次定义？</title><link>https://www.zhihu.com/question/311420548</link><description>inline 关键字起先的含义确实是内联优化提示，用于引导编译器将所修饰的、且满足内联条件的函数折叠进调用处。内联以后的函数不会产生汇编或二进制层面的实体，而且使得程序的执行速度更快。 但是我们清楚，现代编译器已十分智能，早已具备在内联与否之间做出最佳决策的能力。程序员使用 ...</description><pubDate>Mon, 30 Mar 2026 01:17:00 GMT</pubDate></item><item><title>为何cpp类中静态属性用inline修饰？ - 知乎</title><link>https://www.zhihu.com/question/579213586</link><description>1、编译器保证inline static 只有一份，即使在多个cpp中 2、降低编译时间 Note: A static constexpr data member of a class is implicitly inline from C++17. This special case does not change the semantics of existing code, but means that it is now unnecessary to provide a separate definition for the member in a source file.</description><pubDate>Fri, 03 Apr 2026 11:07:00 GMT</pubDate></item><item><title>c++还需要自己写inline函数吗？ - 知乎</title><link>https://www.zhihu.com/question/452546506</link><description>需要，但原因可能跟你想的不一样。 C++ 里，编译器决定是否内联函数的时候，可以说是完全不看 inline 关键字了。但 inline 关键字，决定了你该把函数的定义放在哪里。如果是写在一个 .cpp 文件里，那你永远不需要写 inline 关键字。但如果你打算把函数的定义写在头文件里、类的定义外面，那一旦有 ...</description><pubDate>Thu, 12 Mar 2026 22:10:00 GMT</pubDate></item><item><title>如何理解DDR的inline ECC？ - 知乎</title><link>https://www.zhihu.com/question/638904614</link><description>inline ECC 参考这个链接 DDR 内存中的 ECC (synopsys.com) 测试 ECC功能，可能需要切换到特定模式来实现检查功能。 SPEC 会描述这部分内容的，可能需要配置 错误矢量参数 实现自动化检错，最后检查错误信息输出就可以的。具体操作需要查看ddr对应的spec关于ECC的测试描述。 不清楚你的是什么类型的DDR设备 ...</description><pubDate>Tue, 31 Mar 2026 20:28:00 GMT</pubDate></item><item><title>c++中inline关键字是不是基本没什么用了？ - 知乎</title><link>https://www.zhihu.com/question/38644656</link><description>C++标准中 inline 和内联没有必然的关系。 如果硬要说，那就是用了内联替换（inline substitution）的单词、且在标准下 编译器 可以对内联定义的函数做内联替换的优化。 而 C99 的 inline 和 C++的很大区别，具体就不细说了。</description><pubDate>Tue, 18 Nov 2025 20:43:00 GMT</pubDate></item><item><title>constexpr跟inline一样只是一个建议吗? - 知乎</title><link>https://www.zhihu.com/question/419304773</link><description>1. inline 关键字早就不是优化建议了啊，国内的很多教材都是当内联讲的，这是上古时期的说法了。 从哪怕第一个成形的 C++98 标准来说，inline 关键字都已经不是这个意思了。 inline 现在表示在链接时遇到不同编译单元出现了相同签名的函数时，只保留一份。</description><pubDate>Fri, 27 Mar 2026 12:26:00 GMT</pubDate></item></channel></rss>