免费注册 查看新帖 |

Chinaunix

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

linux下类的创建 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-07-23 10:48 |只看该作者 |倒序浏览
今天的任务是用epoll模型对客户端的socket进行监听,并且把epoll的wait事件放在一个 线程中,还要把这些封装到一个TcpClient类中
我首先创建了一个TcpClient.h头文件,其中包含其他一些头文件件和基本的函数声明:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pthread.h>
#include <fcntl.h>
#include<netinet/in.h>
#include <sys/types.h>
#include <sys/time.h>
#include<sys/socket.h>
#include <sys/epoll.h>
#include<arpa/inet.h>
class  TcpClient
{
public:
            int  CreateAClient(int epollfd,int  serverport,char *argv[] );
            void epollEvent(int newsocket);
             int  startClientmanager(int epollsize);
             void  stopClientManager(int threadid);
};
接着创建一个TcpClient.c的源文件,并实现类中声明的int  CreateAClient(int epollfd,int  serverport,char *argv[] )函数
#include"TcpClient.h"
TcpClient::int  CreateAClient(int epollfd,int  serverport,char *argv[] )
{   
     struct sockaddr_in     addrSrv;
      int  sockClient;
      int   servport=serverport;
      int    epfd=epollfd;
      sockClient=socket(AF_INET,SOCK_STREAM,0);
          if(sockClient<0)
            {     printf("创建套接字失败!\n");
                   return -1;
             }
         else
             {
                   printf("创建套接字成功!\n");
                   return  0;
             }
          addrSrv.sin_addr.s_addr=inet_addr(argv[1]);
          addrSrv.sin_family=AF_INET;
          addrSrv.sin_port=htons(servport);
      

         
         if(connect(sockClient,(struct sockaddr_in *)&addrSrv,sizeof(struct sockaddr_in))<0)
              {
                     printf("链接失败!\n");
                     return-1;
               }
           else
               {
                      printf("链接成功!\n");
                       return 0;
                }
     if (epoll_ctl(epfd, EPOLL_CTL_ADD, sockClient, &epoll_Ev) < 0)//注册epoll事件
           {
              printf("epoll set insertion error: fd=%d\n",epfd);
                return -1;
               }
            return    sockClient;
   对源文件进行编译gcc  -Wall  TcpClient.c  -o ww
   报出下面的错误:
     In file included from TcpClient.c:1:
     TcpClient.h:14: 错误: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘TcpClient’
     TcpClient.c:2: 错误: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘:’ token
  望高手指点

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
2 [报告]
发表于 2008-07-23 20:44 |只看该作者
C++ 代码就别用 gcc 编译了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP