免费注册 查看新帖 |

Chinaunix

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

那位大侠可以帮忙看看这个程序,中间有一些不懂的 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-28 12:00 |只看该作者 |倒序浏览
/*  Make the necessary includes and set up the variables.  */

#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>

#define LENTH 1024

int main()
{
    int sockfd;
    int len;
    struct sockaddr_in address;
    int result;
    char buff[LENTH],file[20];
                int fd;

/*  Create a socket for the client.  */

    sockfd = socket(AF_INET, SOCK_STREAM, 0);

/*  Name the socket, as agreed with the server.  */

    address.sin_family = AF_INET;
    address.sin_addr.s_addr = inet_addr("127.0.0.1");
    address.sin_port = htons(9734);
    len = sizeof(address);

/*  Now connect our socket to the server's socket.  */

    result = connect(sockfd, (struct sockaddr *)&address, len);

    if(result == -1) {
        perror("oops: client3");
        exit(1);
    }
                scanf("%s",file);
               
/*  We can now read/write via sockfd.  */
                /*
                if(fd=open(file,O_RDONLY)<0)
                {
                        perror("open");
                        exit(0);
                }
                */
                fd=open(file,O_RDONLY);
                write(sockfd, file, strlen(file)+1);
                printf("%s\n",file);
    //printf("fdsfgdsgds");
                while(read(fd,buff,sizeof(buff))>0)
                {
                printf("%s\n",buff);
                /*{
                        write(sockfd, buff, LENTH);
                        printf("%s\n",buff);
                }*/
                write(sockfd, buff, LENTH);
                }
    printf("send finish!!\n");
    close(sockfd);
    exit(0);
}
这是通过套接字传送一个文本文件,在问价打开的时候如果使用
if(fd=open(file,O_RDONLY)<0)
                {
                        perror("open");
                        exit(0);
                }
运行就不成功,使用下面的语句就可以
fd=open(file,O_RDONLY);
不加判断条件。
这是为什么?

论坛徽章:
0
2 [报告]
发表于 2012-03-28 12:03 |只看该作者
回复 1# 林力心洁


    if(fd=open(file,O_RDONLY)<0)
这个错误太明显了
优先级问题

论坛徽章:
1
白羊座
日期:2013-08-22 17:30:33
3 [报告]
发表于 2012-03-28 13:39 |只看该作者
if(fd=open(file,O_RDONLY)<0)
这种容易产生歧义的语言就好不要出现在代码中,规范一下代码可以节省很多不必要的debug时间啊!

论坛徽章:
1
技术图书徽章
日期:2013-09-17 09:11:51
4 [报告]
发表于 2012-03-28 16:32 |只看该作者
对于有多种运算符在一起操作的时候,建议都用括号括起来,这样在以后阅读代码的时候也可以更快速的明白,当然肯定是能够避免出错的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP