VS2003 has a confusion when debuging, if you open two files with same filename in VS or the same name cpp file you open is not the one your project including. when this situation happen, you can set breakpoint in the confused file, and debuging just as the file is the right cpp file in your project. so you can see the right logic process of sourse code, but never have the right result you expected.
For example, you have create a new project from a old one, you need to refer the old sourse code, so you also open the old sourse file in you new project. now you need to add a variable to the new cpp file, but you add to old one for careless. and you continue to debug the project, but cann't get the right result, so you set some breakpoints in the old cpp file(you think it's new one), and see the right logic process. now you maybe go into a confusion.
本文讨论了使用Visual Studio 2003进行调试时可能出现的一个问题:当两个文件名相同但属于不同项目的文件被同时打开时,可能会导致调试过程中出现混淆,即设置断点的文件并非当前项目中实际使用的文件。这种情况会使得开发者难以找到问题所在,文章通过一个具体的例子解释了这一现象。
767

被折叠的 条评论
为什么被折叠?



