Identification of overloaded statements in Visual Studio (C ++)

Is there a way to quickly visually identify overloaded statements in C ++ using Visual Studio?

One of the big IMO errors in C ++ does not know that the operator you are using is overloaded.

Is there something in Visual Studio or a third-party tool that automatically selects or overloads color-coded statements?

+4
source share
2 answers

I do not know if there is a tool for this special use case, but for all kinds of syntax highlithing, refactoring, etc. there is Visual Assist X , an add-in for Visual Studio.

+1
source

AFAIK, Visual Assist does do a lot of syntax highlighting, but doesn't highlight overloaded statements. Correct me if I am wrong.

If you need to learn a lot of code, I suggest doing it in Eclipse + CDT. Among many other useful functions, overloaded operators also stand out.

+1
source

Source: https://habr.com/ru/post/1303283/


All Articles