Can somebody please explain what is the main difference between visual studio and Qt?
Can somebody please explain what is the main difference between visual studio and Qt?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Visual Studio is an IDE, a piece of software that combines a text editor and other programming facilities (integrates a compiler, testing suite and more). This is where you write you code and debug it.
QT is a library – it is a library of software intended to be used by programmers to build up on. You can use it when writing code, by writing code for and with it.
You can use Visual Studio to type in and write applications with the QT library, but not the other way around.
You could create an IDE using a library such as QT – Visual Studio is using WPF as its graphics library. You would still write the IDE with an editor first…