Chinaunix首页 | 论坛 | 博客
  • 博客访问: 277702
  • 博文数量: 42
  • 博客积分: 590
  • 博客等级: 中士
  • 技术积分: 447
  • 用 户 组: 普通用户
  • 注册时间: 2011-05-04 01:15
个人简介

健康快乐 虚怀若谷 淡定从容

文章分类

全部博文(42)

分类: C/C++

2011-05-12 15:02:01

这两天用C-free运行一个3DES加密代码,不料出现了标题中的警告,当年没学好,所以不知是何意,百度上搜了一下,找到了解决方法与问题的症结,下面是CSDN上的一个高人写的。

zz:http://zhthaitao64.blog.163.com/blog/static/138443827201013101533309/

main.c :10:2 warning: no newline at the end of file
修复这个警告,在文件结尾回车一下就行了。可以很少会有人去仔细探究,为什么gcc会给出这么一个警告?
原因其实也很简单,因为标准规定如此。C99第5.1.1.2节这样写道:

Each instance of a backslash character (\) immediately followed by a new-line character is deleted, splicing physical source lines to form logical source lines.Only the last backslash on any physical source lineshall be eligible for being part of such a splice. A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character before any such splicing takes place.

C99 Rationale中进一步指出:

A backslash immediately before a newline has long been used to continue string literals, as well as preprocessing command lines. In the interest of easing machine generation of C, and of transporting code to machines with restrictive physical line lengths, the C89 Committee generalized this mechanism to permit any token to be continued by interposing a backslash/newline sequence.

这么规定的初衷有两个:
为了每一行都要以换行结束。
因为行尾的\表示连接下一行,如果一个文件最后一行(main函数的右边大括号)行尾有\,那么,紧跟它也被包含进来的下一个源文件的第一行就会被连接!而如果一个文件以一个空行结束就会避免这种情况的发生。
例子:

view plaincopy to clipboardprint?
#include   
int main()  
{  
    printf("%d", \  
    sizeof(int));  
    return 0;  

#include
int main()
{
 printf("%d", \
 sizeof(int));
 return 0;
}

上例中的第四个物理行和第五个物理行被反斜杠(\)连接成一个逻辑行(等价于printf("%d", sizeof(int)));

如果在第七行main函数的右大括号后面加上反斜杠的话,那么它就会和下一个文件的第一行连接,所以这里}之后要输入一个换行符,故要求每一行都要用换行结束。

注:有些编译器会自动在文件结束位置插入换行符。(譬如vi编辑器)


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/digu/archive/2010/10/16/5945279.aspx

阅读(3051) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~