I am working on the Sphere Online Judge problems (OK I am only on my 2nd lol) and using VC++ 2008 express and have just noticed the “code definition window”. What exactly does this thing do? Is it any use to a beginner like me?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The code definition window gives you additional context for the code you have the cursor over.
For example if you have the cursor over
Catin the following code:Then it will display the definition of the
Catclass in the code definition window.If you have the following code:
And you have the cursor over c, it will show you where c was defined. (i.e. the line of code:
Cat c;)Instead of using this window, you can simply right click on any part of code and select
go to definition.