自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (4)
  • 收藏
  • 关注

转载 c++ STL 基本容器理解(内含代码段)

C++中有两种类型的容器:顺序容器和关联容器。顺序容器主要有vector、list、deque等。其中vector表示一段连续的内存,基于数组实现,list表示非连续的内存,基于链表实现,deque与vector类似,但是对首元素提供插入和删除的双向支持。关联容器主要有map和set。map是key-value形式,set是单值。map和set只能存放唯一的key,multimap和multise

2017-05-18 16:16:54 507

saliency图像显著性检测的ne数据库60篇相关文献

saliency图像显著性检测的ne数据库60篇相关文献

2016-07-11

OpenGL立方体带黑白格格纹理有光照可以鼠标键盘交互

OpenGL立方体带黑白格格纹理有光照可以鼠标键盘交互,在vs环境运行,需提前配置好opengl环境

2016-06-21

养老院管理系统

WinForm读取Excel 并导入到数据库相应的表里 WinForm读取Excel 并javascript:void(0);导入到数据库相应的表里

2015-05-10

资源管理器

//用户登录 FrmLogin login = new FrmLogin(); if (login.ShowDialog() == DialogResult.OK) { //MessageBox.Show("Welcome"); //this.Hide(); } else { Application.Exit(); } this.tsbAddress.Size = new Size(this.toolStrip1.Width - 130, toolStrip2.Height); TreeNode rootNode = treeView1.Nodes[0]; rootNode.Expand(); TreeNode ndMyComputer = null; TreeNode ndMyDocuments = null; foreach (TreeNode nd in rootNode.Nodes) { if (nd.Name == "ndMyComputer") { ndMyComputer = nd; } if (nd.Name == "ndMyDocuments") { ndMyDocuments = nd; } } //展开我的电脑 DriveInfo[] drivers = DriveInfo.GetDrives(); foreach (DriveInfo drive in drivers) { TreeNode node = new TreeNode(); node.Text = drive.Name; if (drive.DriveType == DriveType.Fixed) { node.ImageKey = "hdd.ico"; node.SelectedImageKey = "hdd.ico"; node.Tag = drive.RootDirectory.FullName; } ndMyComputer.Nodes.Add(node); } //展开我的文档 string strMyDocumentFolderPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); DirectoryInfo myDocument = new DirectoryInfo(strMyDocumentFolderPath); DirectoryInfo[] folders = myDocument.GetDirectories(); foreach (DirectoryInfo di in folders) { TreeNode node = new TreeNode(di.Name); node.Tag = di.FullName; node.ImageKey = "folder.ico"; node.SelectedImageKey = "folder.ico"; ndMyDocuments.Nodes.Add(node); } }

2015-05-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除