Post

touch fish 14

  1. More on harmful overuse of std::move

    看不懂

  2. c++17引入的函数介绍 std::launder

    const不可更改,但我可以洗清内存

  3. The Return of the Frame Pointers

  4. 分代GC浅析

  5. 剖析std::sort函数设计,避免coredump

    简单的讲,sort的比较函数需要满足三个条件

    1. 反自反性(Irreflexivity): 对于任何 a,comp(a, a) 必须返回 false。这一条比较容易错
    2. 反对称性(Antisymmetry): 对于任何 a 和 b,如果 comp(a, b) 返回 true,则 comp(b, a) 必须返回 false。
    3. 传递性(Transitivity): 对于任何 a、b 和 c,如果 comp(a, b) 返回 true 且 comp(b, c) 返回 true,则 comp(a, c) 必须返回 true。
      • 所以function里最好写简单一点,a < b这种比较好,a <= b这种就有问题. 也别搞一堆有的没得判断了,太复杂的话,会coredump
  6. Lambda, bind(front), std::function, Function Pointer Benchmarks

  7. epoll in depth

  8. 一些硬件特性对程序性能的影响

  9. Branch predictor: How many “if”s are too many? Including x86 and M1 benchmarks!

  10. 【预取简介】[Prefetching Introduction]

  11. 实现一个简单的协程

  12. 浅谈C++内存模型

  13. [草稿] Linux内核的内存回收机制

  14. ELF符号:复杂又麻烦的技术细节

  15. CSAPP第七章笔记:链接过程

  16. A Python Interpreter Written in Python

  17. c++14之后支持的lambda递归
    1
    2
    3
    4
    5
    6
    
        auto dfs = [](auto&& self, int x) {
            if (x  <= 0) {
                return 1;
            }
            return x * self(self, x - 1);
        };
    

    比较怪,再套一次

    1
    2
    3
    4
    5
    6
    7
    8
    9
    
        auto dfs = [](int x) {
            auto f = [](auto&& f, int x) -> int {
                if (x  <= 0) {
                    return 1;
                }
                return x * f(f, x - 1);
            };
            return f(f, x);
        };
    
This post is licensed under CC BY 4.0 by the author.

Trending Tags