小弟对于VS2003配置给出的几点意见

开发 后端
VS2003有很多值得学习的地方,这里我们主要介绍VS2003配置,包括介绍VS2003配置的一些方面,首先让大家了解下VS2003,什么是VS2003配置。

由于VS2003配置的文章太多,在此处无法上传,所以大家有communitysever的可以从里面获得然后反编译为自己所用,没有的就到网络上搜下吧,有许多资源呢!我就是在网上下了许多关于VS2003配置的帮助说明。

以下VS2003配置步骤没多做解释是因为本人也是初学,尚未入门:

一、下载
 Ice-3.2.0-VC71.msi:  http://www.zeroc.com/download/Ice/3.2/Ice-3.2.0-VC71.msi
 Ice-3.2.0-ThirdParty-VC71.msi: http://www.zeroc.com/download/Ice/3.2/Ice-3.2.0-ThirdParty-VC71.msi

二、安装
 1、Ice-3.2.0-VC71.msi 安装到c:\Ice-3.2.0-VC71
 2、Ice-3.2.0-ThirdParty-VC71.msi到C:\Ice-3.2.0-VC71\ThirdParty
 3、在OS系统环境变量中添加ICEROOT,指向c:\Ice-3.2.0-VC71
 4、在OS系统环境变量path添加“%ICEROOT%\bin;”、“%ICEROOT%\lib;”、“%ICEROOT%\ThirdParty\bin;”、“%ICEROOT%\ThirdParty\lib”;#t#

二、设置
 1、打开VS2003,
  “工具”\“选项”\“项目”\“VC++目录”
   选择“可执行文件”: 增加“$(ICEROOT)\ThirdParty\bin”、“$(ICEROOT)\bin”
   选择“包含文件”: 增加“$(ICEROOT)\include”、“$(ICEROOT)\ThirdParty\include”
   选择“库文件”: 增加“$(ICEROOT)\ThirdParty\lib”、“$(ICEROOT)\lib”

三、示例程序
 1、新建ICEDEMO空白解决方案
 2、在方案中添加新建Visual C++项目Slice,选择Win32静态库空白项目。
 3、命令行中敲入notepad Printer.ice(必须是.ice),
 4、文件printer.ice

注意分号:

  1. module demo  
  2. {  
  3. interface Printer  
  4. {  
  5. void printString(string s);  
  6. };  
  7. }; 

保存在目录\slice下。
 5、用命令行程序编译printer.ice:slice2cpp printer.ice,生成Printer.h、Printer.cpp两个文件
 6、将pritner.h、printer.cpp加入Slice工程
 7、修改Printer.cpp中的第一行“#include <printer.h>”为“#include "printer.h"”
 8、设置Slice项目属性还需要进行如下设置:
  C/C++选项卡\代码生成\运行时库\“多线程调试DLL(/MDd)”;
  C/C++选项卡\语言\启用运行时类型信息\“是(/GR)”;
 注意:MD表示RELEASE,MDD表示DEBUG
 9、新建一个Visual C++项目Server,选择Win32控制台空白项目
 10、在项目server中添加引用项目Slice
 11、在项目server中添加空白CPP文件Server.cpp:

  1. #include "..\Slice\Printer.h"  
  2. #include <Ice/Application.h> 
  3. #include <Ice/Ice.h> 
  4. using namespace std;  
  5. using namespace demo;  
  6. class PrinterI : public Printer   
  7. {  
  8. public:  
  9. virtual void printString(const string& s,const Ice::Current&);  
  10. };  
  11. void PrinterI::printString(const string& s, const Ice::Current&)  
  12. {  
  13. cout << s << endl;  
  14. }  
  15. int  main(int argc, char* argv[])  
  16. {  
  17. int status = 0;  
  18. Ice::CommunicatorPtr ic;  
  19. try   
  20. {  
  21. ic = Ice::initialize(argc, argv);  
  22. Ice::ObjectAdapterPtr adapteric->createObjectAdapterWithEndpoints("SimplePrinterAdapter", 
    "default -p 10000");  
  23. Ice::ObjectPtr object = new PrinterI;  
  24. adapter->add(object,ic->stringToIdentity("SimplePrinter")); 

如果您按网上盛传的文章写成adapter->add(object,ICE::stringToIdentity("SimplePrinter"));您就死翘翘了就这个问题缠了我3天,后来发现官方文档是ic->stringToIdentity("SimplePrinter"),总算解围了,否则还得死绕,本想偷懒不看英文,只看马维达的翻译或网上的文章,他们的代码与官方文档代码就这一句不同,不仔细看根本发现不了,想想懒没偷成更费一身汗。话又说回来,官方文档也有陷阱,纯看文档同样死得难看。

我终于解决了VS2003配置的一些相关问题与难点了。哈哈

责任编辑:chenqingxiang 来源: 石山
相关推荐

2009-12-01 17:55:11

VS2003配置

2009-11-30 13:51:28

2009-11-27 09:16:11

VS2003配置文件

2009-11-30 17:28:39

VS2003 ASP

2009-11-30 11:05:19

VS2003 WebS

2009-11-30 16:50:26

VS2003调试

2009-11-27 08:59:29

VS2003配置文件

2009-11-25 13:35:05

VS2003使用

2009-11-27 10:03:48

VS2003安装失败

2009-11-30 10:34:28

VS2003编译

2009-11-30 13:51:28

VS2003 Acti

2009-11-27 16:25:54

2009-11-30 13:51:28

ActiveX控件

2009-12-01 15:01:33

VS2003 Web

2009-11-27 16:16:51

VS2003系统

2009-11-26 11:05:59

VS2003控件

2009-11-30 10:07:19

VS2003版本

2009-11-26 08:57:01

VS2003发布

2009-11-26 14:10:08

2009-11-26 15:50:06

VS2003编译器
点赞
收藏

51CTO技术栈公众号