Is it possible to overload C++ class operators in the static context? e.g.
class Class_1{ ... }
int main()
{
Class_1[val]...
}
|
|
Is it possible to overload C++ class operators in the static context? e.g.
|
||
|
|
If you are looking for metaprogramming using the built-in operator: Such a thing isn't possible - the built-in operators operate on runtime values, not on compile time values. You may use
|
||
|
|
|
|
I don't believe it's possible, though I could be wrong on this front. I'd like to ask why you'd want to do this though. Rather than performing operations on a class instead of instances, perhaps you just require one instance throughout your application? In this case, you should probably be using the singleton pattern. |
||
|
|
|
If you mean the operator operates on a class, the No. That does not make sense, it is like saying |
||
|
|
|
|
No, operators cannot be static members of a class. Use a regular static function instead. |
||
|
|
Class_1[val]yield a type? Like do you expect to doClass_1[val] v;? – Johannes Schaub - litb Sep 7 at 19:08std::type_id) and I can't think of any operator that can be overloaded statically. I suggest, instead of asking whether your implementation idea is feasible in C++, you present the actual problem this was meant to solve. Someone might be able to suggest a feasible implementation. – sbi Sep 7 at 21:05