掌握调试Visual Studio 2010 - 初学者指南 [ ^ ] 使用Visual Studio 2010进行基本调试 - YouTube [ ^ ] 在Visual Studio中调试C#代码 - YouTube [ ^ ] 调试器只显示你的代码正在做什么,你的任务是与它应该做什么进行比较。your code work depending on data, we have no way to find what is wrong without that data.Your code do not behave the way you expect, or you don't understand why !There is an almost universal solution: Run your code on debugger step by step, inspect variables.The debugger is here to show you what your code is doing and your task is to compare with what it should do.There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.Debugger - Wikipedia, the free encyclopedia[^]Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[^]Basic Debugging with Visual Studio 2010 - YouTube[^]Debugging C# Code in Visual Studio - YouTube[^]The debugger is here to only show you what your code is doing and your task is to compare with what it should do. 这篇关于求解器适合2D高斯分布的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-14 05:34