zoukankan      html  css  js  c++  java
  • 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);
  • 相关阅读:
    《Java从入门到放弃》入门篇:Struts2的基本数据传递方式
    《Java从入门到放弃》入门篇:Struts2的常用基本标签
    《Java从入门到放弃》入门篇:Struts2的基本访问方式(二)
    《Java从入门到放弃》入门篇:Struts2的基本访问方式
    《Java从入门到放弃》入门篇:XMLHttpRequest的基本用法
    Unity 从StreamingAssets文件夹和PersistentData文件夹 保存读取AssetBundle资源 路径详解
    海外版本修改总结
    unity A*寻路 (三)A*算法
    unity A*寻路 (二)读取NavMesh数据
    unity A*寻路 (一)导出NavMesh数据
  • 原文地址:https://www.cnblogs.com/Patt/p/4831021.html
Copyright © 2011-2022 走看看