- 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/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!