240 发简信
IP属地:西藏
  • 120
    functor

    所有的仿函数适配器要想融入STL,都必须继承以上两种unary_function或binary_function之一。继承之后,就有了参数的类型别名,后续可以进行相应的优化。

  • 120
    2020-03-23

    #include<typeinfo> vector v; cout<<typeif(v).name();

  • 120
    traits

    用iterator举例,当模板函数在声明时,看起来可能像是这样: template<class T> void algorithm(T a,T b) { iterator_t...

  • 120
    C++ 内存管理小知识点

    C++里的各种new底层也都是malloc,而malloc调用的时候会附带一部分overhead。所以,细碎的申请memory效率是不如一下子申请一大块高的。 常规的new封...

  • #include<vector>
    #include<algorithm>
    #include<functional>
    #include<iostream>

    using namespace std;

    template <int N>
    struct Fact
    {
    enum {
    value = Fact<N - 1>::value + Fact<N - 2>::value+ Fact<N - 3>::value
    + Fact<N - 4>::value+ Fact<N - 5>::value
    };
    };
    template<>
    struct Fact<1>
    {
    enum { value = 1 };
    };
    template<>
    struct Fact<2>
    {
    enum { value = 2 };
    };
    template<>
    struct Fact<3>
    {
    enum { value = 3 };
    };
    template<>
    struct Fact<4>
    {
    enum { value = 4 };
    };
    template<>
    struct Fact<5>
    {
    enum { value = 5 };
    };
    int main()
    {
    auto res= Fact<6>::value;
    cout << res;
    return 0;
    }

    模板元enum小例子

    template struct Fact { enum { value = Fact<N - 1>::value + Fact<N - 2>::value }...

  • 模板元enum小例子

    template struct Fact { enum { value = Fact<N - 1>::value + Fact<N - 2>::value }...

  • 新标准的模板元方法

    template struct F { static constexpr int Value = [] { if constexpr (N > 2)//可以代替#...

  • 编译器求值

    constexpr int f(int n) { if (n < 6)return n; else return f(n - 1) + f(n - 2) + f(n ...

  • operator new和placement new的例子

    auto *p=operator new(sizeof(int)); auto *pp=static_cast (p); auto r=new(pp) int; ...

  • 120
    2019-11-18

    图来自bilibili秦春林的视频,渲染的秘密。 单位方向,单位面积的辐射通量,单位方向可能会对应很大或者很小的面积,辐射通量除以方向再除以面积之后得到在一小块上的这个方向的...

  • 120
    6

    bochs异常退出了之后,会在vhd的文件夹下生成一个后缀lock的文件,不删了它下次就打不开bochs。 "\"是续行符,当一行写不下时,可以在行尾使用这个符号,以表明下一...

  • 120
    5

    开机cs0xFFFF,ip0x0000直接进BIOS,BIOS读0,0,1扇区,也就是MBR主引导扇区,这个扇区512字节大,这段平时是操作系统负责写的。BIOS在1M内存的...