Can you make custom operators in C++?

前端 未结 6 1932
盖世英雄少女心
盖世英雄少女心 2020-12-01 00:24

Is it possible to make a custom operator so you can do things like this?

if (\"Hello, world!\" contains \"Hello\") ...

Note: this is a sepa

6条回答
  •  孤独总比滥情好
    2020-12-01 00:36

    Yes! (well, sort of)

    There are a couple publicly available tools to help you out. Both use preprocessor code generation to create templates which implement the custom operators. These operators consist of one or more built-in operators in conjunction with an identifier.

    Since these aren't actually custom operators, but merely tricks of operator overloading, there are a few caveats:

    • Macros are evil. If you make a mistake, the compiler will be all but entirely useless for tracking down the problem.
    • Even if you get the macro right, if there is an error in your usage of the operator or in the definition of your operation, the compiler will be only slightly more helpful.
    • You must use a valid identifier as part of the operator. If you want a more symbol-like operator, you can use _, o or similarly simple alphanumerics.

    CustomOperators

    While I was working on my own library for this purpose (see below) I came across this project. Here is an example of creating an avg operator:

    #define avg BinaryOperatorDefinition(_op_avg, /)
    DeclareBinaryOperator(_op_avg)
    DeclareOperatorLeftType(_op_avg, /, double);
    inline double _op_avg(double l, double r)
    {
       return (l + r) / 2;
    }
    BindBinaryOperator(double, _op_avg, /, double, double)
    

    IdOp

    What started as an exercise in pure frivolity became my own take on this problem. Here's a similar example:

    template class AvgOp { 
    public: 
       T operator()(const T& left, const T& right) 
       {
          return (left + right) / 2; 
       }
    };
    IDOP_CREATE_LEFT_HANDED(<, _avg_, >, AvgOp)
    #define avg <_avg_>
    

    Key Differences

    • CustomOperators supports postfix unary operators
    • IdOp templates use references rather than pointers to eliminate use of the free store, and to allow full compile-time evaluation of the operation
    • IdOp allows you to easily specify several operations for the same root identifier

提交回复
热议问题