<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>PLM之家PLMHome-工业软件践行者 - PLM之家-开发资源</title>
    <link>http://plmhome.com/forum-devresource-1.html</link>
    <description>Latest 20 threads of PLM之家-开发资源</description>
    <copyright>Copyright(C) PLM之家PLMHome-工业软件践行者</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 01 Jun 2026 08:42:47 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://plmhome.com/static/image/common/logo_88_31.gif</url>
      <title>PLM之家PLMHome-工业软件践行者</title>
      <link>http://plmhome.com/</link>
    </image>
    <item>
      <title>Vector祛除指定元素的方法---</title>
      <link>http://plmhome.com/thread-164356-1-1.html</link>
      <description><![CDATA[Vector祛除指定元素的方法---


//（需要#include ）
std::vector::iterator iter=std::find(a.begin(),a.end(),3);
a.erase(iter);

案例二
a.erase(a.begin()+2);

案例三
    vector::iterator it = vec.begin();
    for(;it != vec.end();)
    {
        if(*it  ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sun, 14 Apr 2019 12:46:43 +0000</pubDate>
    </item>
    <item>
      <title>Vue element-UI开发学习---单一页面学习</title>
      <link>http://plmhome.com/thread-164344-1-1.html</link>
      <description><![CDATA[Vue element-UI开发学习---单一页面学习




  
 
 
    Data View
    
      Data XX
      TC Data Collection
      XX Data Collection
      XX Data Collection
      XX Data Collection
    
    About Us
 


 
 

  
    
  
  
    Search
  ]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Mon, 18 Mar 2019 07:13:56 +0000</pubDate>
    </item>
    <item>
      <title>Vue 前端开发配置步骤---自学手册</title>
      <link>http://plmhome.com/thread-164342-1-1.html</link>
      <description><![CDATA[最近要使用Vue 来做互联网前端开发，慢慢把笔记记录下来吧

（1） 安装Nodejs ，https://nodejs.org/en/  下载安装即可

（2）安装Vue 脚手架
&gt;npm install --global vue-cli  / cnpm install --global vue-cli
(3) 创建项目 

vue init webpack vue-plmhome01


(4) cd ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sat, 16 Mar 2019 10:41:54 +0000</pubDate>
    </item>
    <item>
      <title>C++ STL相关使用特点大全，太有用了</title>
      <link>http://plmhome.com/thread-21961-1-1.html</link>
      <description><![CDATA[C++ STL 的实现：


1.vector  底层数据结构为数组 ，支持快速随机访问


2.list    底层数据结构为双向链表，支持快速增删


3.deque   底层数据结构为一个中央控制器和多个缓冲区，详细见STL源码剖析P146，支持首尾（中间不能）快速增删，也支持随机访问


4.sta ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Thu, 15 Mar 2018 11:07:14 +0000</pubDate>
    </item>
    <item>
      <title>Oracle 实现分页查询！</title>
      <link>http://plmhome.com/thread-4496-1-1.html</link>
      <description><![CDATA[使用oracle数据库查询数据时，每页展示数据有限，大部分情况下需要分页展示。如每页显示10条，一页一页查询出来。下面就来介绍下oracle分页实现
1
使用T_BASE_PROVINCE表作为测试演示使用，表字段如下
ID]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
<enclosure url="/forum/VARCHAR2(6 BYTE)
PROVINCE" length="VARCHAR2 ..." type="image/jpeg" />      <pubDate>Fri, 03 Nov 2017 08:22:57 +0000</pubDate>
    </item>
    <item>
      <title>C++获得本机所有网卡MAC地址信息的实现方法</title>
      <link>http://plmhome.com/thread-4403-1-1.html</link>
      <description><![CDATA[#include 
#include 
#include 
using namespace std;
#pragma comment(lib,\&quot;Iphlpapi.lib\&quot;) //需要添加Iphlpapi.lib库

int main(int argc, char* argv[])
{
  //PIP_ADAPTER_INFO结构体指针存储本机网卡信息
  PIP_ADAPTER_INFO pIpAdapterInfo = new IP_ADAPTER_INFO ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Tue, 17 Oct 2017 13:05:45 +0000</pubDate>
    </item>
    <item>
      <title>C++的方式获取当前系统的MAC物理地址</title>
      <link>http://plmhome.com/thread-4387-1-1.html</link>
      <description><![CDATA[// 头文件包含
#include \&quot;stdafx.h\&quot;
#include 
#include 
#include 
using namespace std;
// 函数声明
void output(PIP_ADAPTER_INFO pIpAdapterInfo);
// 程序入口
int _tmain(int argc, _TCHAR* argv[])
{
    //PIP_ADAPTER_INFO结构体指针存储本机网卡信息
     ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Wed, 11 Oct 2017 13:24:30 +0000</pubDate>
    </item>
    <item>
      <title>关于multimap::equal_range的用法--经常遇到哦，一对多</title>
      <link>http://plmhome.com/thread-3799-1-1.html</link>
      <description><![CDATA[关于multimap::equal_range的用法--经常遇到哦，一对多

来个例子，一看就懂

// multimap::equal_elements
#include 
#include 
using namespace std;
int main ()
{
  multimap mymm;
  multimap::iterator it;
  pair ret;
  mymm.insert(pair(\'a\',10));
  mymm.inse ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sun, 11 Dec 2016 07:32:26 +0000</pubDate>
    </item>
    <item>
      <title>C 语言中返回字符串函数的四种实现方法</title>
      <link>http://plmhome.com/thread-3798-1-1.html</link>
      <description><![CDATA[有四种方式：
1。使用堆空间，返回申请的堆地址，注意释放
2。函数参数传递指针，返回该指针
3。返回函数内定义的静态变量（共享）
4。返回全局变量
******************以下摘自csdn******************************
其实就是要返回一个有效的指针，尾部变量退出后就无效 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sun, 11 Dec 2016 07:29:19 +0000</pubDate>
    </item>
    <item>
      <title>最全的c++map的用法</title>
      <link>http://plmhome.com/thread-3621-1-1.html</link>
      <description><![CDATA[最全的c++map的用法此文是复制来的0.01. map最基本的构造函数；
mapmapstring; mapmapint;
mapmapstring; map&lt; char ,string&gt;mapchar;
mapmapchar; mapmapint；2. map添加数据；mapmaplive;
1. maplive.insert(pair(102,\&quot;aclive\&quot;));
2. maplive.insert(map::value_type( ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>mildcat</author>
      <pubDate>Mon, 29 Aug 2016 12:25:18 +0000</pubDate>
    </item>
    <item>
      <title>如何执行静默（无人参与）Java 安装？</title>
      <link>http://plmhome.com/thread-2564-1-1.html</link>
      <description><![CDATA[如何执行静默（无人参与）Java 安装？
本文适用于:
平台: Windows XP, Windows 2000, Windows 2003
Java 版本: 7.0, 8.0
问题

系统管理员希望在 Intranet 中的多台计算机上部署 Java，但不想进行用户交互操作。
开发人员要求在静默模式下将 Java 安装到自己的产品中。
 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Tue, 12 May 2015 02:31:17 +0000</pubDate>
    </item>
    <item>
      <title>使用Apache POI快速实现teamcenter和Excel的报表开发实例</title>
      <link>http://plmhome.com/thread-2509-1-1.html</link>
      <description><![CDATA[1.Apache POI简介Apache POI是Apache软件基金会的开放源码函式库，POI提供API给Java程式对Microsoft Office格式档案读和写的功能。 .NET的开发人员则可以利用NPOI (POI for .NET) 来存取 POI 的功能。2.POI结构HSSF － 提供读写Microsoft Excel XLS格式档案的功能。
XS ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Fri, 24 Apr 2015 07:40:47 +0000</pubDate>
    </item>
    <item>
      <title>使用tinyxml插件来处理C++的xml读取和写入</title>
      <link>http://plmhome.com/thread-2199-1-1.html</link>
      <description><![CDATA[读取和设置xml配置文件是最常用的操作，试用了几个C++的XML解析器，个人感觉TinyXML是使用起来最舒服的，因为它的API接口和Java的十分类似，面向对象性很好。TinyXML是一个开源的解析XML的解析库，能够用于C++，能够在Windows或Linux中编译。这个解析库的模型通过解析XM ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>mildcat</author>
      <pubDate>Thu, 29 Jan 2015 01:24:17 +0000</pubDate>
    </item>
    <item>
      <title>如何让Csharp运行的程序console不一闪而过</title>
      <link>http://plmhome.com/thread-1993-1-1.html</link>
      <description><![CDATA[如何让Csharp运行的程序console不一闪而过


方法有三个：

1，程序最后加上一句console.Read(); 
2,选择“开始执行不调试  Ctrl + F5 
3,用命令行运行：csc xxx.cs]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Fri, 12 Dec 2014 06:26:41 +0000</pubDate>
    </item>
    <item>
      <title>VS2010 C++ 操作Excel表格的编程实现</title>
      <link>http://plmhome.com/thread-1860-1-1.html</link>
      <description><![CDATA[通过VC实现对Excel表格的操作的方法有多种，如：通过ODBC数据库实现，通过解析Excel表格文件，通过OLE/COM的实现。本文主要研究通过OLE/COM实现对Excel表格的操作。


1、添加OLE/COM支持。首先，应用程序必须添加对OLE/COM的支持，才能导入OLE/COM组件。本文使用的是MF ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Mon, 10 Nov 2014 07:54:05 +0000</pubDate>
    </item>
    <item>
      <title>C语言通过ODBC读写Excel表格文件</title>
      <link>http://plmhome.com/thread-1847-1-1.html</link>
      <description><![CDATA[C语言通过ODBC读写Excel表格文件
想要通过ODBC直接读、写Excel表格文件，首先，应确保ODBC中已安装有Excel表格文件的驱动\&quot;MICROSOFT EXCEL DRIVER (*.XLS)\&quot;。然后，可根据下面步骤进行：
 1. 在StdAfx.h文件中加入： #include  #include  2. 通过ODBC直接创建Excel文件 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sat, 08 Nov 2014 00:17:31 +0000</pubDate>
    </item>
    <item>
      <title>VS C++操作Excel详细教程</title>
      <link>http://plmhome.com/thread-1846-1-1.html</link>
      <description><![CDATA[通过VC实现对Excel表格的操作的方法有多种，如：通过ODBC数据库实现，通过解析Excel表格文件，通过OLE/COM的实现。本文主要研究通过OLE/COM实现对Excel表格的操作。
  
本文源码的应用环境说明：
Windows XP SP3
Microsoft Visual Studio 2010
Microsoft Office Excel 2 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Sat, 08 Nov 2014 00:13:41 +0000</pubDate>
    </item>
    <item>
      <title>2014中国制造业产品创新数字化国际峰会论文征集活动开始啦</title>
      <link>http://plmhome.com/thread-1702-1-1.html</link>
      <description><![CDATA[2014年9月9日，由e-works数字化企业网举办的一年一度的中国制造业产品创新数字化峰会论文征集活动已于日前全面启动。]]></description>
      <category>PLM之家-开发资源</category>
      <author>taojialong</author>
<enclosure url="/forum/    作为第十届中国制造业产品创新数字化国际峰会的会议论文集，2014 PLM征文旨在传播制造企业产品创新数字化的理论与方法，提升制造企业产品创新 ..." length="" type="image/jpeg" />      <pubDate>Wed, 24 Sep 2014 09:12:52 +0000</pubDate>
    </item>
    <item>
      <title>关于Msiexec命令详解</title>
      <link>http://plmhome.com/thread-1640-1-1.html</link>
      <description><![CDATA[Msiexec提供从命令行对 Windows 安装程序进行安装、修改和执行操作的方法。安装或配置产品 
使用管理安装选项 
修复产品 
卸载产品 
公布产品 
设置登录级别 
应用更新 
使用命令行安装转换 
使用命令行通过转换安装并公布产品 
设置用户界面级别 
显示 Windows 安装程 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Wed, 03 Sep 2014 05:46:00 +0000</pubDate>
    </item>
    <item>
      <title>C++文件操作详解（ifstream、ofstream、fstream）</title>
      <link>http://plmhome.com/thread-1404-1-1.html</link>
      <description><![CDATA[C++文件操作详解（ifstream、ofstream、fstream）
C++ 通过以下几个类支持文件的输入输出：
[*]ofstream: 写操作（输出）的文件类 (由ostream引申而来)
[*]ifstream: 读操作（输入）的文件类(由istream引申而来)
[*]fstream: 可同时读写操作的文件类 (由iostream引申而 ...]]></description>
      <category>PLM之家-开发资源</category>
      <author>admin</author>
      <pubDate>Wed, 18 Jun 2014 06:47:24 +0000</pubDate>
    </item>
  </channel>
</rss>