DeuAq.com >> Leben >  >> Elektronik

So führen Sie Code in VS-Code aus

Einer der beliebtesten Quellcode-Editoren, Visual Studio Code, allgemein als VS-Code bezeichnet, ist sehr anfängerfreundlich. Seine benutzerfreundliche Oberfläche und fortschrittlichen Funktionen machen es zu einem Favoriten für Anfänger und erfahrene Programmierer gleichermaßen.

So führen Sie Code in VS-Code aus

Wenn Sie neu bei VS Code sind und nach einer vereinfachten Anleitung zum Ausführen von Code suchen, sind Sie hier richtig. Wir führen Sie durch das Einrichten der erforderlichen Software und das Ausführen von Code mit vertrauten Sprachen wie C/C++ und Python sowie durch das Ausführen von Befehlszeilenargumenten.

Die Verknüpfung zum Ausführen von Code in VS-Code

In VS Code müssen Sie nur eine Verknüpfung verwenden, um Ihren Code auszuführen. Diese Tastenkombination ist Strg + Alt + N. Es gibt noch einige weitere Möglichkeiten, Code auszuführen.

Es funktioniert auch, F1 zu drücken und dann „Run Code“ auszuwählen. Wenn Sie es nach dem Drücken von F1 eingeben möchten, können Sie das auch tun.

Benutzer können mit der rechten Maustaste auf den Texteditor klicken und dann im Kontextmenü „Code ausführen“ auswählen. Mit nur zwei Klicks wird Ihr Code ausgeführt.

„Code ausführen“ ist auch eine Option im Titelmenü des Editors und im Kontextmenü des Datei-Explorers.

Wenn Sie die Ausführung Ihres Codes stoppen möchten, ist die Tastenkombination Strg + Alt + M. Durch Drücken von F1 können Sie auch die Option „Stop Code Run“ auswählen. Diese Option ist auch im Titelmenü des Editors und im Ausgabekanal verfügbar.

Schließlich können Sie mit der rechten Maustaste auf den Ausgangskanal klicken, um das Kontextmenü zu öffnen und „Stop Code Run“ auszuwählen.

Das Erlernen dieser Abkürzungen und Methoden sollte das Ausführen und Stoppen von Code in verschiedenen Situationen ein wenig einfacher machen.

So führen Sie C-Code in VS-Code aus

Neben der Kenntnis von C-Code und VS-Code müssen Sie die C/C++-Erweiterung herunterladen. Ohne sie können Sie C-Code nicht innerhalb von VS Code ausführen.

Dies sind die Anweisungen zum Ausführen von C-Code in VS Code:

Einrichten der erforderlichen Software

VS-Code starten.
So führen Sie Code in VS-Code aus Suchen Sie die C/C++-Erweiterung auf dem Marktplatz für Erweiterungen.
So führen Sie Code in VS-Code aus Installieren Sie die Erweiterung.
So führen Sie Code in VS-Code aus MinGW herunterladen und installieren.
So führen Sie Code in VS-Code aus Stellen Sie sicher, dass Sie die Optionen „Mingw32-Basispaket“ und „Ming32-gcc-g++-Paket“ installieren.
So führen Sie Code in VS-Code aus Kopieren Sie den Pfad zum „bin“-Ordner in MinGW.
So führen Sie Code in VS-Code aus Gehe zu den erweiterten Systemeinstellungen von Windows.
So führen Sie Code in VS-Code aus Wählen Sie „Umgebungsvariablen“.
So führen Sie Code in VS-Code aus Klicken Sie im Abschnitt „Systemvariablen“ auf „Pfad“.
So führen Sie Code in VS-Code aus Wählen Sie „Bearbeiten“.
So führen Sie Code in VS-Code aus Wählen Sie einen neuen Pfad.
So führen Sie Code in VS-Code aus Fügen Sie den MinGW-Pfad ein und klicken Sie auf die Schaltfläche „OK“.
So führen Sie Code in VS-Code aus Klicken Sie für die anderen Popup-Fenster auf „OK“.
So führen Sie Code in VS-Code aus

Coding in VS Code

Create a folder for your C code.
So führen Sie Code in VS-Code aus Add folder to VS Code. Hover your mouse over the C code folder and click the “+” button.
So führen Sie Code in VS-Code aus Write the file name.
So führen Sie Code in VS-Code aus Start coding in C.
So führen Sie Code in VS-Code aus Run the code with Ctrl + Alt + N or any of the other methods mentioned above.
So führen Sie Code in VS-Code aus

Once you complete the one-time software setup, you’ll be able to use VS Code and the C language easily. Just make sure the other required programs are correctly installed before running code, especially the packages.

How to Run Python Code in VS Code

Running Python code in VS Code is relatively easy. You’ll need an extension and Python interpreter. The former is found in the VS Code extensions marketplace, but Python interpreters vary depending on how they’re installed.

Before you install the others, you should already have Python on your PC. Verifying it beforehand is also essential.

With the preliminaries out of the way, let’s get into the coding process.

With a command prompt, create an empty folder and open it.
So führen Sie Code in VS-Code aus Open VS Code in the new empty folder.
So führen Sie Code in VS-Code aus Choose the Python interpreter for VS Code to use.
So führen Sie Code in VS-Code aus Create a Python source file.
So führen Sie Code in VS-Code aus Start coding in Python.
So führen Sie Code in VS-Code aus Run the Python code by clicking the “Play” button at the top-right corner of your editor.
So führen Sie Code in VS-Code aus

The interpreter you install depends on your needs, but VS Code works incredibly well with Python regardless of your interpreter choice.

How to Run JS Code in VS Code

JavaScript works even better in VS Code due to the latter already having JavaScript IntelliSense, refactoring, and additional advanced features for the language. Since VS Code works so well with JS Code, there’s little preliminary configuring needed to start working right away.

Here’s how you’ll run JavaScript code in VS Code:

Download and install NodeJS on your PC.
So führen Sie Code in VS-Code aus Launch VS Code and create a new folder.
So führen Sie Code in VS-Code aus Write in JS and name the file with the .js extension.
So führen Sie Code in VS-Code aus Save the changes.
So führen Sie Code in VS-Code aus Open a VS Code terminal.
So führen Sie Code in VS-Code aus Type “cd yourdirectoryname ” to navigate to the JavaScript code.
So führen Sie Code in VS-Code aus If you want to check your code output, type “node yourfilename ” and wait.
So führen Sie Code in VS-Code aus

Your directory and files will be named differently, so we only included these as placeholder names.

A more straightforward way to run JavaScript code also exists:

Install Code Runner.
So führen Sie Code in VS-Code aus Write or open a JavaScript code file.
So führen Sie Code in VS-Code aus Run the code with Ctrl + Alt + N or any other method.
So führen Sie Code in VS-Code aus The Output Window will show your code.
So führen Sie Code in VS-Code aus

If you only want to test a few lines of code and then save it, this method shines. You can finish within a minute and have a file ready to store for future use.

How to Run Code With Arguments in VS Code

Command-line arguments are for debugging or launching code files, and VS Code is entirely compatible with these types of codes and debugging. In this section, you’ll learn how to run code with arguments.

Before you do so, you have to get “launch.json.” If you don’t have it, you can create it by following these steps:

  • Go to “Run.”
    So führen Sie Code in VS-Code aus
  • Select “Add Configuration.”
    So führen Sie Code in VS-Code aus
  • The following steps are for running code with arguments:

  • Open launch.json.
    So führen Sie Code in VS-Code aus
  • Add your arguments.
  • Select the file to debug.
    So führen Sie Code in VS-Code aus
  • Click “Run And Debug” to debug your code.
    So führen Sie Code in VS-Code aus
  • These are the basics of running your code with arguments. In this case, we’re talking about Python since it’s the simplest example.

    Coding Made Easy

    With this knowledge, running code in VS Code should become as natural as breathing – with enough practice. The various languages you can use with VS Code make it a powerful and straightforward IDE to pick up. As such, many developers highly recommend aspiring programmers learn how to use it.

    Do you like using VS Code? What do you think about the interface? Let us know your thoughts in the comments section below.