Chapter Contents

Previous

Next
Debugging C++ Programs

Searching for Data Objects

Normal C++ scoping rules apply to most searches in the debugger. When you are stopped at a line of code in a member function, you do not have to specify this -> to access class members. If your source code is structured so that classes are nested within classes, the debugger also searches any lexically enclosing scopes. The debugger applies normal C++ rules for ambiguity resolution.

You can access static members by using the class-name::member-name syntax.


Chapter Contents

Previous

Next

Top of Page

Copyright © 2001 by SAS Institute Inc., Cary, NC, USA. All rights reserved.