[C++ Entry Guide] (02) Installation and use of Visual Studio 2022

insert image description here

1. Download

insert image description here

  1. download link
  1. select version
  • Community—Community Edition, which can also be understood as a personal edition. For students, open source and personal. It is a good choice for some novices to learn. This version has a relatively complete free IDE. Available for developing applications for Android, iOS, Windows and Web.

  • Professional——Professional version, it not only meets the development of teams of all sizes, but also suitable for individuals. This version is very powerful. Has all the benefits of the Community and Enterprise editions.

  • Enterprise—Enterprise Edition, suitable for development teams and companies. This version provides a wealth of professional developer tools, services, and subscriptions. Compared with the personal version, it can maintain high-efficiency work and seamless cooperation between different developer teams.

2. Installation

  1. Double-click the download program, this interface will be displayed, click "Continue" and wait for the installer to complete the installation.
    insert image description here

  2. Select the workload and check Desktop development using C++ and Visual Studio extension development.
    insert image description here

  3. Select the language pack (the default is Simplified Chinese, you can leave it unchanged if there is no special need).
    insert image description here

  4. Select the installation location (default C drive), after changing the installation location, click Install in the lower right corner.
    insert image description here

  5. Wait for the installation to complete.
    insert image description here

Three, use

  1. Start Visual Studio, click Create New Project
    insert image description here

  2. create new project
    insert image description here

  3. configure new project
    insert image description here

  4. Create source files
    insert image description here

  5. add new item
    insert image description here

  6. Write code, run OK
    insert image description here

Guess you like

Origin blog.csdn.net/duoduo_11011/article/details/130600943