VScode添加C++万能头文件

VScode添加C++万能头文件

参考:vscode编译器添加c++万能头文件

使用xcode以及vscode时需要自行添加万能头才可以在代码中使用。

本质都是找到软件中储存库函数的文件夹中再添加一个自行需要的函数。

1 写一行任意已存在的头文件

比如:写一行#include

VScode添加C++万能头文件_第1张图片

2 对头文件右击点转到定义

iostream 右击点转到定义

3 对打开的头文件右击点在资源管理器中显示

打开之后对文件框上的 iostream 右击在Finder显示

VScode添加C++万能头文件_第2张图片

4 在跳转到的文件夹中创建bits文件夹

VScode添加C++万能头文件_第3张图片

5 在bits文件夹内创建stdc++.h

VScode添加C++万能头文件_第4张图片

文件内容如下:

// C++ includes used for precompiling -*- C++ -*-

// Copyright (C) 2003-2018 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.

// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
// .

/** @file stdc++.h
 *  This is an implementation file for a precompiled header.
 */

// 17.4.1.2 Headers

// C
#ifndef _GLIBCXX_NO_ASSERT
#include 
#endif
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#if __cplusplus >= 201103L
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#endif

// C++
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#if __cplusplus >= 201103L
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#endif

#if __cplusplus >= 201402L
#include 
#endif

#if __cplusplus >= 201703L
#include 
#include 
#endif

你可能感兴趣的:(C++,vscode,c++,ide)