visual studio 2013英文版 保姆级使用教程

创建第一个C++程序

编写一个C++程序总共分为4个步骤

  • 创建项目
  • 创建文件
  • 编写代码
  • 运行程序

1.1.1 创建项目

​ Visual Studio是我们用来编写C++程序的主要工具,我们先将它打开

 在这里插入图片描述

 1.1.2 创建文件

右键源文件,选择添加->新建项

在这里插入图片描述

给C++文件起个名称,然后点击添加即可。 

在这里插入图片描述

 1.1.3 编写代码

#include<iostream>
using namespace std;

int main() {

	cout << "Hello world" << endl;

	system("pause");

	return 0;
}

1.1.4 运行程序

visual studio运行时 左下角提示 Loading sysmbols for combase.dll导入多个模块特别慢

visual studio 2015 “正在加载..........的符号”问题的 解决方法

问题描述

正在加载太久了;运行时 debug后左下角提示 Loading sysmbols for combase.dll导入多个模块特别慢

解决方法:

打开VS的【工具】-【选项】-【调试】-【符号】

        【TOOLS】-【Options】-【Debugging】-【Symbols】

1、先取消勾选“Microsoft符号服务器”

2、清空符号缓存

 瞬间秒开

附例程

#include <opencv2/opencv.hpp>

using namespace cv;

int main(int argc, char** argv) 
{
	Mat src = imread("D://opt.jpg");
	if (src.empty()) {
		printf("未能找到图片\n");
		return -1;
	}
	namedWindow("显示图片", WINDOW_AUTOSIZE);
	imshow("显示图片", src);
	waitKey(0);
	destroyAllWindows();
	return 0;
}

关于visual+OpenCV

windows下OpenCV的安装配置部署详细教程_万俟淋曦的博客-CSDN博客_opencv安装 

 VS2013+OpenCV3.1.0配置方法_3D视觉工坊的博客-CSDN博客

VS2013配置opencv 3.1.0步骤_bloomerOAO的博客-CSDN博客


参考文献

C++基础入门(一)_生命是有光的的博客-CSDN博客_c++shaoerbioancheng

visual studio 2015 “正在加载..........的符号”问题的 解决方法_IO-MY的博客-CSDN博客_vc 正在加载符号怎么解决

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
☆ 资源说明:☆ [Wrox] Visual Studio 2013 高级编程 (英文版) [Wrox] Professional Visual Studio 2013 (E-Book) ☆ 图书概要:☆ Comprehensive guide to Visual Studio 2013 Visual Studio is your essential tool for Windows programming. Visual Studio 2013 features important updates to the user interface and to productivity. In Professional Visual Studio 2013, author, Microsoft Certified Trainer, and Microsoft Visual C# MVP Bruce Johnson brings three decades of industry experience to guide you through the update, and he doesn't just gloss over the basics. With his unique IDE-centric approach, he steers into the nooks and crannies to help you use Visual Studio 2013 to its maximum potential. - Choose from more theme options, check out the new icons, and make your settings portable - Step up your workflow with hover colors, auto brace completion, peek, and CodeLens - Code ASP.NET faster than ever with new shortcuts - Get acquainted with the new SharePoint 2013 environment - Find your way around the new XAML editor for Windows Store apps Visual Studio 2013 includes better support for advanced debugging techniques, vast improvements to the visual database tools, and new support for UI testing for Windows Store apps. This update is the key to smoother, quicker programming, and Professional Visual Studio 2013 is your map to everything inside. ☆ 出版信息:☆ [作者信息] Bruce Johnson [出版机构] Wrox [出版日期] 2014年03月17日 [图书页数] 1104页 [图书语言] 英语 [图书格式] PDF 格式
安装Visual Studio 2013的步骤如下: 1. 下载Visual Studio 2013安装文件。你可以从Microsoft官方网站下载或者从可信赖的第三方下载站点获取安装文件。 2. 解压下载的安装文件。 3. 双击vs_professional.exe文件开始安装。 4. 点击“继续”按钮。 5. 勾选“我同意许可条款和隐私策略”,然后点击“下一步”按钮。 6. 默认情况下,所有组件都会被选中,你可以根据个人需求进行自定义选择。 7. 点击“安装”按钮,开始安装。 8. 等待约半个小时,直到安装完成。 9. 安装完成后,点击“启动”按钮打开Visual Studio 2013。 10. 初次启动时,选择“以后再说”选项来设置主题颜色。 11. Visual Studio 2013启动后,你可以开始使用软件。 12. 在工具栏的“帮助”菜单下,选择“注册产品”。 13. 点击“更改我的产品许可证”并输入密钥以注册产品。根据你所安装的版本,选择相应的密钥。 14. 注册成功后,关闭注册对话框即可开始使用Visual Studio 2013的基本功能。 请注意,以上教程仅适用于Windows 7、Windows 8和Windows 10系统下的Visual Studio 2013。安装过程需要一定时间,请耐心等待。安装文件的下载链接可以参考。<span class="em">1</span><span class="em">2</span> #### 引用[.reference_title] - *1* [Visual Studio2013版本的安装步骤](https://blog.csdn.net/Onlyone_989/article/details/102314623)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] - *2* [VS 2013安装教程](https://blog.csdn.net/xia0cai_niao/article/details/123493456)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值