Is it possible to make a custom operator so you can do things like this?
if ("Hello, world!" contains "Hello") ...
Note: this is a separate question from "Is it a good idea to..." ;)
|
7
|
Is it possible to make a custom operator so you can do things like this?
Note: this is a separate question from "Is it a good idea to..." ;) |
||||||||||
|
|
|
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:
CustomOperatorsWhile I was working on my own library for this purpose (see below) I came across this project. Here is an example of creating an
IdOpWhat started as an exercise in pure frivolity became my own take on this problem. Here's a similar example:
Key Differences
|
||||||||||||||
|
|
|
To be a bit more accurate, C++ itself only supports creating new overloads of existing operations, NOT creating new operators. There are languages (e.g., ML and most of its descendants) that do allow you to create entirely new operators, but C++ is not one of them. From the looks of things, (at least) the CustomOperators library mentioned in the other answer doesn't support entirely custom operators either. At least if I'm reading things correctly, it's (internally) translating your custom operator into an overload of an existing operator. That makes things easier, at the expense of some flexibility -- for example, when you create a new operator in ML, you can give it precedence different from that of any built-in operator. |
|||
|
|
|
Your suggestion would be nothing more than syntactic sugar for:
and in fact there are already a functions to do that in both cstring and std::string. Which is perhaps a bit like answering "is it a good idea?" but not quite; rather asking "why would you need/want to?" |
||||
|
|
|
Technically, no. That is to say, you can't extend the set of There are not many expressions that can have the form |
|||
|
|