Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
409 views
in Technique[技术] by (71.8m points)

c++ - What is different between visual studio F5, ctrl+F5, or running outside of visual studio?

I have written a program in vc++ that has different behavior in various case as below.

When I run it by F5 it works properly in release mode.

When I run it by ctrl + F5 it crashes when I start to send data to the program.

Outside of visual studio it crashes immediately.

I don't know how to find the bug. Any idea on what is different between these cases?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Running ctrl + F5 will run the application without debugger. (http://msdn.microsoft.com/en-US/library/8b59xk0f(v=vs.90).aspx) This is not the same as running in release mode.

You can run your application in debug mode but without debugger. It sounds stupid but is for example helpful if you want to stop the console from closing on exit. (How to stop console from closing on exit?)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...