调试异常的最佳方法
除非使用 logcat,否则调试异常的最佳方法是什么,因为整体代码非常大?如果将apk安装到实际的Android手机中并通过USB电缆在手机上运行,您是否认为使用断点来查看值?
any best way to debug exception unless using logcat since the overall code are very big? do u think using break point to view the value if installing apk into actual android phone and running it on the phone via usb cable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果这意味着“您可以在实际手机上使用断点进行调试吗?”。答案是肯定的,
这是一个您可以遵循的教程
If this means, 'can you debug using breakpoints on the actual phone?'. The answer is Yes
Here is a tutorial you can follow
当尝试查找异常原因时,代码库的大小大多无关紧要(这可能会使事情变得有点复杂,但一般来说,过程与调试小型应用程序相同)。调试是查找错误的最有效方法,因为您直接在应用程序内部运行,而不必推测应用程序的当前状态(您实际上可以查看它)。
我建议你...
希望有帮助。
The size of the codebase is mostly irrelevant when trying to find the cause of an exception (It might complicate things a little, but in general the procedure is the same as debugging a small application). Debugging is the most efficient way of finding bugs, because you're running directly inside your application and you will not have to speculate about the current state of your application (you can actually look at it).
I suggest that you...
Hope that helps.