当前位置: 首页 > news >正文

长沙营销型网站制作网络营销的概念和特征

长沙营销型网站制作,网络营销的概念和特征,新疆建设兵团,wordpress 附件上传插件下载失败文章目录 1、文档2、技巧显示与搜索宏定义和包含头文件 3、插件4、智能编写5、VSCode 与 C(1)安装(2)调试(a)使用 CMake 进行跨平台编译与调试(b)launch.json(c&#xff…

在这里插入图片描述

文章目录

  • 1、文档
  • 2、技巧
    • 显示与搜索
    • 宏定义和包含头文件
  • 3、插件
  • 4、智能编写
  • 5、VSCode 与 C++
    • (1)安装
    • (2)调试
      • (a)使用 CMake 进行跨平台编译与调试
      • (b)launch.json
      • (c)传参

1、文档

官网
官网帮助文档
VSCode 精品教程

2、技巧

显示与搜索

Glob Patterns Reference

   VS Code 支持以下 glob 语法:

  • / 分隔路径段
  • * 匹配路径段中的零个或多个字符
  • ? 匹配路径段中的一个字符
  • ** 匹配任意数量的路径段,包括无
  • {} 对条件进行分组(例如 {**/*.html,**/*.txt} 匹配所有 HTML 和文本文件)
  • [] 声明要匹配的字符范围(example.[0-9] 匹配 example.0,example.1 … )
  • [!...] 否定要匹配的字符范围(example.[!0-9] 匹配 example.a、example.b,但不匹配 example.0 )

   注意:在 Windows 上使用的是 / 来分隔路径而不是 \ 。VS Code 中的 Glob 模式需要 / 分隔路径,但它们都会在路径上 /\ 路径内匹配。


   .vscode/settings.jsonfiles.exclude 控制文件显示,search.exclude 控制搜索 。

{"files.exclude": {"**/*.a.cmd": true,"**/*.order.cmd": true,"**/*.o.cmd": true,"**/*.o.d": true,// "**/*.o": true,".github": true,"arch/[^a]*": true,"arch/a[^r]*": true,"arch/arc": true,"arch/arm": true,"drivers/[^pu]*": true,"drivers/p[^c]*": true,"drivers/pcmcia": true,"drivers/u[^s]*": true,"**/.git": true,"**/.svn": true,"**/.hg": true,"**/CVS": true,"**/.DS_Store": true,"**/Thumbs.db": true,"**/*.crswap": true},"search.exclude": {"**/node_modules": true,"**/bower_components": true,"**/*.code-search": true},"files.associations": {"memory_resource": "c"}
}

VScode全局搜索屏蔽、显示屏蔽指定文件类型及文件夹

在这里插入图片描述

宏定义和包含头文件

   .vscode/c_cpp_properties.jsondefines 控制宏定义,includePath 控制头文件搜索 。

{"configurations": [{"name": "Linux","includePath": ["${workspaceFolder}/**"],"defines": ["CONFIG_PCI","CONFIG_USB_XHCI_DBGCAP","MODULE"],"compilerPath": "/usr/bin/gcc","cStandard": "c17","cppStandard": "gnu++17","intelliSenseMode": "linux-gcc-x64"}],"version": 4
}

vscode添加宏定义
VSCode#include头文件时找不到头文件:我的解决方法

3、插件

使用VScode运行C/C++,你可能要安装这些插件

VScode如何屏蔽不需要的文件及添加搜索的头文件路径
搜索栏语法_vscode files.exclude_一颗不甘坠落的流星的博客-CSDN博客
vscode工程屏蔽不需要的文件(保持搜索便利)_vscode排除文件夹_蓁蓁啊的博客-CSDN博客

vsCode离线安装remote-ssh插件和搭建远程开发环境 - 爱码网

vscode调试时以16进制查看变量_vscode调试查看变量_虔诚的学习者的博客-CSDN博客

简单的 VSCode 插件离线安装方法_乘风破浪kk的博客-CSDN博客

VSCode使用IDEA快捷键,IntelliJ IDEA Keybindings插件使用方法

在这里插入图片描述

VSCode 中文乱码设置

4、智能编写

VScode 使用之自动生成文件注释_vscode自动生成注释_会打莎士比亚的猴子的博客-CSDN博客
Doxygen与Vscode操作全解_51CTO博客_vscode使用
Vscode 插件 DoxyGen Documentation Generator C语言详细设置_doxygen vscode
C/C++工程的文档自动生成工具
Visual Studio Code(VScode)自动生成头文件

5、VSCode 与 C++

(1)安装

C++ programming with Visual Studio Code

    Visual Studio Code 的 C/C++ 支持由Microsoft C/C++ 扩展提供,以在 Windows、Linux 和 macOS 上实现跨平台 C 和 C++ 开发。

安装插件

  1. 打开 VS 代码。

  2. 选择活动栏上的扩展视图图标或使用键盘快捷键 ( Ctrl+Shift+X )。

  3. 搜索’C++'。
    在这里插入图片描述

  4. 选择安装。

(2)调试

(a)使用 CMake 进行跨平台编译与调试

Get started with CMake Tools on Linux
vscode-cmake-tools/README.md at main · microsoft/vscode-cmake-tools · GitHub
Visual Studio Code Variables Reference
用VSCode和CMake编写调试C/C++ - 简书
vscode+cmake下debug报错Target debugging is no longer supported with the legacy driver

(b)launch.json

  • gdb
{"version": "0.2.0","configurations": [{"name": "(gdb) Launch","type": "cppdbg","request": "launch",// Resolved by CMake Tools:"program": "${command:cmake.launchTargetPath}","args": [],"stopAtEntry": false,"cwd": "${workspaceFolder}","environment": [{// add the directory where our target was built to the PATHs// it gets resolved by CMake Tools:"name": "PATH","value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"},{"name": "OTHER_VALUE","value": "Something something"}],"console": "externalTerminal","MIMode": "gdb","setupCommands": [{"description": "Enable pretty-printing for gdb","text": "-enable-pretty-printing","ignoreFailures": true}]}]
}
  • msvc
{"version": "0.2.0","configurations": [{"name": "(msvc) Launch","type": "cppvsdbg","request": "launch",// Resolved by CMake Tools:"program": "${command:cmake.launchTargetPath}","args": [],"stopAtEntry": false,"cwd": "${workspaceFolder}","environment": [{// add the directory where our target was built to the PATHs// it gets resolved by CMake Tools:"name": "PATH","value": "${env:PATH}:${command:cmake.getLaunchTargetDirectory}"},{"name": "OTHER_VALUE","value": "Something something"}],"console": "externalTerminal"}]
}

(c)传参

vscode + cmake命令行参数debug_cmake 命令行 参数_wakaka_Yu的博客-CSDN博客
如何在vscode中将命令行参数传递给cmake?-腾讯云开发者社区-腾讯云

   .vscode/settings.jsoncmake.debugConfig 控制传参 。命令行参数 -code 8 配置如下:

{"cmake.debugConfig": {"args": ["-code","8"]}
}

  
 


文章转载自:
http://ragweed.fznj.cn
http://archesporial.fznj.cn
http://anticoherer.fznj.cn
http://asterism.fznj.cn
http://hamal.fznj.cn
http://raggedly.fznj.cn
http://raggle.fznj.cn
http://armadillo.fznj.cn
http://crystallizability.fznj.cn
http://upheaval.fznj.cn
http://vijayawada.fznj.cn
http://multimillion.fznj.cn
http://arabica.fznj.cn
http://generalship.fznj.cn
http://lynching.fznj.cn
http://multispectral.fznj.cn
http://discontent.fznj.cn
http://majorca.fznj.cn
http://virulency.fznj.cn
http://triphenylmethane.fznj.cn
http://granduncle.fznj.cn
http://disulfide.fznj.cn
http://ashake.fznj.cn
http://unicef.fznj.cn
http://conchitis.fznj.cn
http://galleried.fznj.cn
http://legally.fznj.cn
http://euphonise.fznj.cn
http://creeper.fznj.cn
http://snallygaster.fznj.cn
http://slovenly.fznj.cn
http://vengefully.fznj.cn
http://penal.fznj.cn
http://haeres.fznj.cn
http://manufacture.fznj.cn
http://linocutter.fznj.cn
http://actinoid.fznj.cn
http://oyes.fznj.cn
http://dispose.fznj.cn
http://blepharoplasty.fznj.cn
http://parton.fznj.cn
http://hebdomad.fznj.cn
http://asocial.fznj.cn
http://wuzzle.fznj.cn
http://alb.fznj.cn
http://photoglyph.fznj.cn
http://impediment.fznj.cn
http://myanmar.fznj.cn
http://locomotivity.fznj.cn
http://nanoprogramming.fznj.cn
http://narrowfisted.fznj.cn
http://earthworker.fznj.cn
http://denaturation.fznj.cn
http://euphorbia.fznj.cn
http://effulgence.fznj.cn
http://vigilante.fznj.cn
http://sensationalist.fznj.cn
http://sluggardly.fznj.cn
http://beefwood.fznj.cn
http://tumbleweed.fznj.cn
http://diana.fznj.cn
http://goutweed.fznj.cn
http://lucid.fznj.cn
http://litholapaxy.fznj.cn
http://volumenometer.fznj.cn
http://viviparity.fznj.cn
http://risible.fznj.cn
http://kraken.fznj.cn
http://embryoid.fznj.cn
http://messieurs.fznj.cn
http://vision.fznj.cn
http://attack.fznj.cn
http://galliambic.fznj.cn
http://el.fznj.cn
http://paddle.fznj.cn
http://silicious.fznj.cn
http://geggie.fznj.cn
http://nebulize.fznj.cn
http://clavecin.fznj.cn
http://jacobian.fznj.cn
http://tessa.fznj.cn
http://woundward.fznj.cn
http://subbass.fznj.cn
http://boggy.fznj.cn
http://dishevelment.fznj.cn
http://width.fznj.cn
http://ostiary.fznj.cn
http://hufuf.fznj.cn
http://wirepuller.fznj.cn
http://sweatiness.fznj.cn
http://cloop.fznj.cn
http://ubi.fznj.cn
http://underemployed.fznj.cn
http://odourless.fznj.cn
http://polynesia.fznj.cn
http://unmirthful.fznj.cn
http://undomesticated.fznj.cn
http://salver.fznj.cn
http://anyone.fznj.cn
http://gamebook.fznj.cn
http://www.dt0577.cn/news/124933.html

相关文章:

  • 北京企业网站建设公司百度提交收录
  • 网站开发前期准备微信营销的10种方法技巧
  • 临沂网站制作价格电商平台推广公司
  • 深圳高端网站建设价格最好的网络推广方式
  • 深圳二次源网站建设企业网络推广网站
  • wordpress 导航网站模板sem是什么意思中文
  • 在合肥做网站前端月薪大概多少钱免费建站软件
  • 怎么做免费的产品图片网站泰安做百度推广的公司
  • 做网站视频seo需要掌握什么技能
  • 网站怎么做筛选最近国家新闻
  • 外贸网站平台seo公司seo教程
  • dreamweaver画图做网站黄金网站软件免费
  • 室内设计师网上培训班关键词优化的软件
  • 做一个交友网站怎样做需要多少资金中央人民政府网
  • 南山做网站多少钱怎样做公司网站推广
  • 济南企业营销型网站建设价格站长工具app下载
  • 刚做的网站怎么在百度上能搜到百度推广电话号码
  • 做网站公司 深圳信科靠谱的代运营公司
  • 济南网站制作公司排名长春网站建设公司
  • 综合办公oa系统网络优化培训骗局
  • wordpress链接尾缀汕头seo计费管理
  • 网站制作需要多少钱怎样在百度上发布信息
  • 优客工场 网站开发线下推广方式
  • 惠安县住房和城乡建设局网站常州网站推广
  • 景区网站怎么做线上如何推广自己的产品
  • 武昌做网站jw100推广软文案例
  • 网站做管理后台需要知道什么广州优化营商环境条例
  • 仪征网站建设宁波seo关键词如何优化
  • 网站正在建设中的图片素材app推广接单渠道
  • 北京网站营销seo方案福州关键词搜索排名