1

VS Code C++ Extension January Update: Create Definitions and Declarations

 1 year ago
source link: https://devblogs.microsoft.com/cppblog/vs-code-c-extension-january-update-create-definitions-and-declarations/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

VS Code C++ Extension January Update: Create Definitions and Declarations

PXL_20220327_210111658.PORTRAIT_cropped3-96x96.jpg

Alexandra Kemper

January 31st, 20230 0

Starting with the 1.13.6 version of the C++ Extension in VS Code, we are happy to share a much requested feature: Auto creation of definitions or declarations for functions! You can now quickly create a declaration in a header file for a function you only have a definition for, or vice versa. These generated definitions and declarations already include all function arguments, so no need for constant copying, pasting, and double checking.

Let’s see it in action:  

How can I create a Definition or Declaration?  

You can either: 

  • Click on your class function definition, then the Code Action (lightbulb icon) on the left. This will open a dropdown where you can select “Create a Declaration”. For creating a definition, it is the same process, just click on the function declaration, then select the Code Action for “Create a Definition” for your function.
    Clicking on the function, a lightbulb will appear on the left, where you can select the Option to
  • Right click a function’s declaration or definition and select the “Create Definition/Declaration” from the context menu. A definition or declaration will be created depending on what is needed. 
    Right click a function’s declaration or definition and select the “Create Definition/Declaration” from the context menu. A definition or declaration will be created depending on what is needed.
  • Select the function, then use the Command Palette (Ctrl + Shift + P) and type in the command Create Declaration/Definition.  

Select the function, then use the Command Palette (Ctrl + Shift + P) and type in the command Create Declaration/Definition.  

How do I know where the definition or declaration will be created?  

Definitions and declarations will be created based on the patterns you have already established in your code. For example, if you previously had added definitions and declarations in the same file, we will also add any new ones to that same file. Note that we will maintain function order automatically, so if your definition is between the functions Addition() and Subtraction() in Math.cpp and ask for a declaration, we will create the new declaration between the declarations of Addition() and Subtraction().  

Otherwise, if you have defined declarations or definitions in a different file from your source file, we will follow that convention.  In the common case of having a header and a source file with matching names, we will identify the other file, even if the header file has not been included in the source file. In this case, once the declaration or definition has been added, we will automatically include your header file to your source file for you.  

If you do not have any precedent of where you create definitions or declarations, we will create a header or source file with a matching name to your current file for you.  

How does this work for namespaces and templates?  

The functionality is the same for namespaces as classes. For templates, if a function template is declared in a header file, the definition of that function template will be created in the same header file, as shown below. This also applies for non-template member functions of class templates.  

What do you think? 

Download the C++ extension for Visual Studio Code  today, give it a try, and let us know what you think. 

If you have any questions, feel free to start a discussion in our Github repository, otherwise if you run into any issues please report them in the  issues section. We can be reached via the comments below or in email at  [email protected]. You can also find our team on Twitter at @VisualC

Alexandra Kemper Product Manager, C++ Team

Follow


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK