- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
int main()
{
FILE *ft;
char ch;
ft=fopen("abc.txt","r+");
if(ft==NULL)
{
printf("can not open target file\n");
exit(1);
}
while(1)
{
ch=fgetc(ft);
if(ch==EOF)
{
printf("done");
break;
}
if(ch=='i')
{
fputc('a',ft);
}
}
fclose(ft);
return 0;
}
正如人们所看到的,我想编辑 abc.txt
,将其中的 i
替换为 a
。< br/>该程序工作正常,但当我从外部打开 abc.txt
时,它似乎未经编辑。
有什么可能的原因吗?
为什么在这种情况下,i
之后的字符没有被 a
替换,正如答案所示?
最佳答案
存在多个问题:
fgetc()
返回 int
,不是char
;它必须返回每个有效的 char
值加上一个单独的值 EOF。正如所写,您无法可靠地检测 EOF。如果char
是无符号类型,你永远找不到EOF;如果char
是有符号类型,您可能会将某些有效字符(通常是 ÿ、y 元音变音、U+00FF、带分音符的拉丁小写字母 Y)误识别为 EOF。
如果在以更新模式打开的文件上切换输入和输出,则必须在读取和写入之间使用文件定位操作( fseek()
、 rewind()
,名义上 fsetpos()
);并且必须使用定位操作或 fflush()
介于写作和阅读之间。
关闭您打开的内容是个好主意(现已在代码中修复)。
如果您的写入有效,您将覆盖 i
之后的字符。与 a
.
这些变化导致:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
FILE *ft;
char const *name = "abc.txt";
int ch;
ft = fopen(name, "r+");
if (ft == NULL)
{
fprintf(stderr, "cannot open target file %s\n", name);
exit(1);
}
while ((ch = fgetc(ft)) != EOF)
{
if (ch == 'i')
{
fseek(ft, -1, SEEK_CUR);
fputc('a',ft);
fseek(ft, 0, SEEK_CUR);
}
}
fclose(ft);
return 0;
}
还有更多错误检查的空间。
fseek(ft, 0, SEEK_CUR);
C 标准要求声明。
ISO/IEC 9899:2011 §7.21.5.3 The
fopen
function¶7 When a file is opened with update mode ('+' as the second or third character in the above list of mode argument values), both input and output may be performed on the associated stream. However, output shall not be directly followed by input without an intervening call to the
fflush
function or to a file positioning function (fseek
,fsetpos
, orrewind
), and input shall not be directly followed by output without an intervening call to a file positioning function, unless the input operation encounters end-of- file. Opening (or creating) a text file with update mode may instead open (or create) a binary stream in some implementations.
(强调已添加。)
fgetc()
返回 int
引自 ISO/IEC 9899:2011(当前的 C 标准)。
§7.21 Input/output
<stdio.h>
§7.21.1 Introduction
EOF
which expands to an integer constant expression, with type int and a negative value, that is returned by several functions to indicate end-of-file, that is, no more input from a stream;§7.21.7.1 The
fgetc
function
int fgetc(FILE *stream);
¶2 If the end-of-file indicator for the input stream pointed to by stream is not set and a next character is present, the
fgetc
function obtains that character as anunsigned char
converted to anint
and advances the associated file position indicator for the stream (if defined).Returns
¶3 If the end-of-file indicator for the stream is set, or if the stream is at end-of-file, the end-of-file indicator for the stream is set and the
fgetc
function returns EOF. Otherwise, thefgetc
function returns the next character from the input stream pointed to by stream. If a read error occurs, the error indicator for the stream is set and thefgetc
function returns EOF.289)289) An end-of-file and a read error can be distinguished by use of the
feof
andferror
functions.
所以,EOF
是一个负整数(通常是-1,但标准没有要求)。 fgetc()
函数返回 EOF 或字符值 unsigned char
(范围为 0..UCHAR_MAX,通常为 0..255)。
§6.2.5 Types
¶3 An object declared as type
char
is large enough to store any member of the basic execution character set. If a member of the basic execution character set is stored in achar
object, its value is guaranteed to be nonnegative. If any other character is stored in achar
object, the resulting value is implementation-defined but shall be within the range of values that can be represented in that type.¶5 An object declared as type
signed char
occupies the same amount of storage as a ‘‘plain’’char
object.§6 For each of the signed integer types, there is a corresponding (but different) unsigned integer type (designated with the keyword
unsigned
) that uses the same amount of storage (including sign information) and has the same alignment requirements.§15 The three types
char
,signed char
, andunsigned char
are collectively called the character types. The implementation shall definechar
to have the same range, representation, and behavior as eithersigned char
orunsigned char
.45)45)
CHAR_MIN
, defined in<limits.h>
, will have one of the values0
orSCHAR_MIN
, and this can be used to distinguish the two options. Irrespective of the choice made,char
is a separate type from the other two and is not compatible with either.
这证明了我的断言:简单的 char
可以是有符号或无符号类型。
现在考虑:
char c = fgetc(fp);
if (c == EOF)
…
假设fgetc()
返回 EOF,并且简单 char
是无符号(8 位)类型,EOF 为 -1
。该赋值将值 0xFF 放入 c
,这是一个正整数。进行比较时,c
晋升为int
(因此为值 255),并且 255 不是负数,因此比较失败。
相反,假设简单的 char
是有符号(8 位)类型,字符集为 ISO 8859-15。如果fgetc()
返回 ÿ,分配的值将是位模式 0b11111111,与 -1
相同,因此在比较中,c
将转换为-1
和比较c == EOF
即使读取了有效字符,也会返回 true。
您可以调整细节,但基本论点在 sizeof(char) < sizeof(int)
期间仍然有效。 。有些 DSP 芯片不适用这一点;你必须重新考虑规则。即便如此,基本点依然存在; fgetc()
返回 int
,不是char
.
如果您的数据确实是 ASCII(7 位数据),那么所有字符都在 0..127 范围内,并且您不会遇到 ÿ 的误解问题。但是,如果您的char
类型是无符号的,你仍然有“无法检测EOF”的问题,所以你的程序会运行很长时间。如果你需要考虑可移植性,你就会考虑到这一点。这些是作为 C 程序员需要处理的专业级问题。您可以相对轻松地找到在您的系统上运行的程序来获取数据,而无需考虑所有这些细微差别。但你的程序无法在其他人的系统上运行。
关于c - 修改c中文件的现有内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21958155/
我有一个如下图所示的情节。对于这个情节,我想在情节(右下角或左下角)的某处添加类似的线图。我正在使用的子图的命令是 plot( 1:121, sample(1:121),type='l' ) 它绘制在
我有一个单表数据库,我继承并迁移到 SQL Server,然后通过创建、链接和填充一大堆表示主表中项目的查找类型表来规范化它。我现在想用它们的外键替换原始表中的那些项目。我是不是一直在写一堆查询或 U
我有一个 Web 应用程序,它当前正在从服务器获取 PDF 的 base64 表示。我可以使用 Mozilla 的 pdf.js 在 上显示它并使用下拉菜单切换页面。 根据我所能找到的一切和Can
在 DB2 上运行的 Moodle 2 安装中,删除用户不成功,返回从数据库读取错误: Debug info: [IBM][CLI Driver][DB2/LINUXX8664] SQL0206N "
我在grails项目的RH包中添加了一个名为Authorization的新域类。 然后,我从grails菜单自动生成了 Controller 和 View 。 但是当我尝试输入 Controller
今天,我发现了一个有趣的plunker,经过谷歌大量搜索后一无所获,希望我能在这里找到答案。我只是想要那个笨蛋的副本。我不想使用复制和粘贴技术。有什么方法可以获取已建立的 plunk 的副本吗?我如何
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: Migrate normal sqlite3 database to core data? 是否可以将现有的 sql
我正在尝试在我的应用程序上添加启动画面。我干净地构建了程序,但我选择了错误的文件。现在我第二次编辑了 VM 选项并再次干净构建,现在我收到此错误: C:\Users\User\Documents\Ne
我已经查看了很多问题,我不相信这是重复使用单元格的结果,因为新的单元格图像是正确的,但是现有的单元格图像不正确并且曾经是正确的。我会先发布图片,以便更容易理解问题。 我有一个图像单元的 Collect
我在来自 Vaadin 的 ContainerHierarchicalWrapper 的这段代码中有一个非常奇怪的错误: for (Object object : children.keySet())
到目前为止,我正在使用 Globalize用于我的 JavaScript 应用程序的 i18n 和 l10n(使用 jQuery UI 构建)。这行得通,但它将我的代码与另一个特定的库联系在一起。现在
我正在创建一个 JHipster 应用程序,现在确定了 full text search 的必要性.我知道 JHipster 与 Elasticseach 集成,但我在创建项目时没有启用它。有没有一种
我一直在寻找堆栈中的建议,但我仍然不能 100% 确定改进它的最佳方法。我有一个存储大约 130K 条记录的 mysql INNODB“产品”表。杂项产品数据等大约有 80 个字段,然后我们一直在为每
我在一本书上看到,它说:当我们使用另一个初始化新创建的对象时 - 使用复制构造函数创建一个临时对象,然后使用赋值运算符将值复制到新对象! 后来在书中我读到:当使用另一个对象初始化新对象时,编译器创建一
我第一次安装现有的 Django 项目时遇到了启动服务器 python manage.py runserver 的问题 这是我做的 1.克隆仓库, 2.制作虚拟环境 3.pip安装要求.txt 4.生
我有一个网站,还有一个登录表单。我不想使用 PHP 来检查我的 MySQL 数据库,因此我正在寻找一种方法来检查用户凭据以查看是否已有 Linux 用户。我知道 PAM,但我还没有找到任何有关如何从网
我有一个现有的 Umbraco 项目在 IIS 服务器上运行。当我开始这个项目时,我基本上是将 Umbraco 直接安装到服务器上,并通过管理界面进行编码,直到网站启动并上线。 现在,客户想要一些更改
我是 Android 开发新手,目前正在学习一些教程。当我在 Eclipse 中设置一个新的 Android 项目,并选择 Windows -> Android SDK and AVD Manager
我有这个注册页面可以正常工作,但对于电子邮件字段,我需要确保电子邮件正确有效1:正确2 : 有效 为了正确添加电子邮件,我正在使用 Java 脚本验证来维护abc@def.com 很好用 但我的问题是
首先让我说我不熟悉 COM 引用,并且我在 Windows 7 64 位计算机上使用 VS2010。今天早上,我从 TFS 中删除了一个现有项目。然后我尝试构建项目并收到此错误: The type o
我是一名优秀的程序员,十分优秀!