• Using a Comparison Function for the Key Type


    (这是C++系列随笔的第二篇,这一系列是我练习C++而查的资料)

    extracted from C++ Primer 5th. edition pp. 425


    Using a Comparison for the Key Type

    The type of the operation that a container uses to organize its elements is part of the type of that container. To specify our own operation, we must supply the type of that operation when we define the type of an associative container (including prioroty_queue). The operation type is specified following the element type inside the angle brackets that we use to say which type of container we are defining. (We are actually required to define a parameter type rather than to pass an argument.)

    Each type inside the angle brackets is just that, a type (please pay attention to this sentence). We supply a particular comparison operation (more generally, a callable object: a pointer to function or a function object) of the specified type (that must have the same type as specified inside the angle brackets, and conversely we msut specify the type inside the angle brackets the same type as the constructor argument we are going to and allowed to supply (from outside? sounds subtle...)) when we create a container.

    (C++ Primer, 5th. Ed. pp. 249)


    Related Topic:

    Function Pointer Parameters

    Just as with arrays, we cannot define parameters of function type but can have a parameter that is a pointer to function. As with arrays, we can write a parameter that looks like a function type (when declaring or defining a function), but it will be treated as a pointer:

    //third parameter is a function type and is automatically treated as a pointer to function
    void useBIgger(const string &s1, const string &s2, 
                    bool pf(const string &, const string &));
    //equivalent declaration: explicitly define the parameter as a pointer to function
    void useBIgger(const string &s1, const string &s2, 
                    bool (*pf)(const string &, const string &));

    However we cannot do so when defining the type of an associative container (a parameter that looks like a functoin type will not be treated as a pointer, and thus illegal):

    //error
    priority_queue<P, vector<P>, bool (const P&, const P&)> que(cmp);
    //OK
    priority_queue<P, vector<P>, bool (*) (const P&, const P&)> que(cmp);
    //a simplified declaration using decltype
    priority_queue<P, vector<P>, decltype(cmp)*> que(cmp);
  • 相关阅读:
    element-ui做表单验证 v-for遍历表单 自动生成校验规则 pc移动双适配
    element-ui练习使用总结
    js监听页面标签切换
    对象数组,按照没想中特定的属性(按中文拼音)排序
    调用七牛云存储文件,返回url
    javascript中的class类 以及class的继承
    javascript原型继承
    javascript面向对象 用new创建一个基于原型的javascript对象
    java中的变量和数据类型
    css的伪元素
  • 原文地址:https://www.cnblogs.com/Patt/p/4831021.html
Copyright © 2020-2023  润新知