免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1352 | 回复: 2
打印 上一主题 下一主题

[C++] 求救! C++程序里的main函数嵌套问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-04-20 11:29 |只看该作者 |倒序浏览
程序代码如下:
// **********************************************************************
//
// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#include <Ice/Ice.h>;
#include <HelloI.h>;

using namespace std;

class Server : public Ice::Application
{
public:

    virtual int run(int argc, char* argv[]);

};

int
Server::run(int argc, char* argv[])
{
    Ice::ObjectAdapterPtr adapter = communicator()->;createObjectAdapter("Hello";
    string id = communicator()->;getProperties()->;getProperty("Identity";

    Ice::ObjectPtr object = new HelloI;
    adapter->;add(object, Ice::stringToIdentity(id));
    adapter->;activate();
    communicator()->;waitForShutdown();
    return EXIT_SUCCESS;
}

int
main(int argc, char* argv[])
{
    Server app;
    int status = app.main(argc, argv);
    return status;
}
请问在app.main(argc, argv)里,main函数怎么成了Server类的一种方法呢?而且这个函数是不是在执行死循环?
Server的run函数什么时候调用的?

论坛徽章:
0
2 [报告]
发表于 2005-04-20 12:24 |只看该作者

求救! C++程序里的main函数嵌套问题

你最好查查Server或者Ice里面有没有定义main,如果不出意外的话,可能能在Ice里面找到

论坛徽章:
0
3 [报告]
发表于 2005-04-20 12:46 |只看该作者

求救! C++程序里的main函数嵌套问题

谢谢
我已经在ice说明文档中找到了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP