How to debug entry point method for app in Eclipse?
After started my aap, in Eclipse
, i set break poins in different places, run debug - all ok.
But, I need debug en开发者_StackOverflowtry point (first - that executed) method for my app.
And in this moment i confused - I cant run debug, because, debug need that application started.
I can start debug after app started, but entry method successful execute.
So, i really dont know how debug entry point method.
Please, help me with this problem.
If you have access to the main()
method (your entry point) code, you can setup a Method Breakpoint in order to stop the debug session just before entering main()
:
精彩评论