What is a code definition window in Visual C ++ 2008 Express?

I am working on Sphere Online Judge problems (OK, I am only on my second LOL) and using VC ++ 2008 express and just noticed a "code definition window". What exactly does this thing do? Is it used for a newbie like me?

+5
source share
3 answers

The code definition window provides additional context for the code you hover over.

For example, if you have a cursor over Catin the following code:

Cat c;

It will then display the class definition Catin the code definition window.

If you have the following code:

c.meow();

c, , c . (.. : Cat c;)


go to definition.

+7

- , , . , " " "". , . , . (IDE). .

.

+1

- , , .

(, ..) , , Visual Studio .

+1
source

All Articles