We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
翻到了这个指导,光看了readme的前几个部分就感觉十分有收获(到网络IO部分为止)。但是在看的同时对不熟悉的东西做了一下调查,觉得有下面几个地方可能可以优化一下?
inline 函数似乎原则上可以含有复杂一些的,如循环的操作,尽管可能编译器并不会内联。参考的是在stackoverflow的讨论。
并不是所有时候都是尽量使用const比较好。在返回值(非引用)的时候,const 返回值目前大部分情况下并不是一个很好的选择。参考的是stackoverflow的另一个讨论,和这个讨论指向的另一个。
总之,非常感谢总结!
The text was updated successfully, but these errors were encountered:
【@shangjiaxuan 提供】inline 表述修改
f85134a
#27
感谢。
编译器一般不内联包含循环、递归、switch 等复杂操作的内联函数
尽可能使用 const
Sorry, something went wrong.
Merge pull request huihut#27 from jiaoqiyuan/master
848df8e
添加答案和修改文章格式
No branches or pull requests
翻到了这个指导,光看了readme的前几个部分就感觉十分有收获(到网络IO部分为止)。但是在看的同时对不熟悉的东西做了一下调查,觉得有下面几个地方可能可以优化一下?
inline 函数似乎原则上可以含有复杂一些的,如循环的操作,尽管可能编译器并不会内联。参考的是在stackoverflow的讨论。
并不是所有时候都是尽量使用const比较好。在返回值(非引用)的时候,const 返回值目前大部分情况下并不是一个很好的选择。参考的是stackoverflow的另一个讨论,和这个讨论指向的另一个。
总之,非常感谢总结!
The text was updated successfully, but these errors were encountered: