- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
是否存在机器(或编译器),其中 sizeof(char) != 1
?
C99 标准 是否规定sizeof(char)
在标准合规性实现中必须正好为 1?如果有,请给我章节编号和引用。
更新:如果我有一台机器 (CPU),它不能寻址字节(最小读取是 4 个字节,对齐的),但只有 4 个字节(uint32_t
),
可以为此编译机器将
sizeof(char)
定义为 4?
sizeof(char)
将是 1,但 char 将有 32 位 (CHAR_BIT
宏)
更新 2:但是 sizeof 结果不是字节!它是 CHAR 的大小。 char 可以是 2 字节,或者(可能)7 位?
更新3:行。所有机器都有 sizeof(char) == 1
。但是什么机器有 CHAR_BIT > 8
?
最佳答案
在 C99 6.5.3.4 节中始终为 1:
When applied to an operand that hastype
char
,unsigned char
, orsigned char
, (or a qualified version thereof)the result is1
.
编辑:不是您问题的一部分,但出于对Harbison and Steele's. C: A Reference Manual, Third Edition, Prentice Hall, 1991 的兴趣(c99 之前)p. 148:
A storage unit is taken to be theamount of storage occupied by onecharacter; the size of an object oftype
char
is therefore1
.
编辑:在回答您更新的问题时,Harbison 和 Steele 的以下问题和答案是相关的(同上,第 6 章的例 4):
Is it allowable to have a Cimplementation in which type
char
canrepresent values ranging from-2,147,483,648 through 2,147,483,647? If so, what would besizeof(char)
under that implementation? What wouldbe the smallest and largest ranges oftypeint
?
答案(同上,第 382 页):
It is permitted (if wasteful) for animplementation to use 32 bits torepresent type
char
. Regardless ofthe implementation, the value ofsizeof(char)
is always 1.
虽然这并没有具体解决这样的情况,比如字节是 8 位,char
是其中的 4 个字节(实际上对于 c99 定义是不可能的,见下文), sizeof(char) = 1
在 c99 标准和 Harbison 和 Steele 中总是很清楚。
编辑:实际上(这是对您的 upd 2 问题的回应),就 c99 而言,sizeof(char)
是 以字节为单位,来自第 6.5 节.3.4 再次:
The
sizeof
operator yields the size(in bytes) of its operand
结合上面的引文,8 位字节和 char
中的 4 个字节是不可能的:对于 c99,一个字节与 char
相同。
在回答您提到的 7 位 char
的可能性时:这在 c99 中是不可能的。根据标准的第 5.2.4.2.1 节,最小值为 8:
Their implementation-defined values shall be equal or greater [my emphasis] in magnitude to those shown, with the same sign.
— number of bits for smallest object that is not a bit-field (byte)
CHAR_BIT 8
— minimum value for an object of type
signed char
SCHAR_MIN -127
— maximum value for an object of type
signed char
SCHAR_MAX +127
— maximum value for an object of type
unsigned char
UCHAR_MAX 255
— minimum value for an object of type
char
CHAR_MIN
see below— maximum value for an object of type
char
CHAR_MAX
see below[...]
If the value of an object of type
char
is treated as a signed integer whenused in an expression, the value ofCHAR_MIN
shall be the same as that ofSCHAR_MIN
and the value ofCHAR_MAX
shall be the same as that ofSCHAR_MAX
. Otherwise, the value ofCHAR_MIN
shall be0
and the value ofCHAR_MAX
shall be the same as that ofUCHAR_MAX
. The valueUCHAR_MAX
shall equal 2CHAR_BIT − 1.
关于c - 是否有机器,其中 sizeof(char) != 1,或至少 CHAR_BIT > 8?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2215445/
这个问题在这里已经有了答案: Why don't Java's +=, -=, *=, /= compound assignment operators require casting? (11 个
当我尝试运行以下代码时,List(.of) 无法编译并给出主题错误。 package collections; import java.util.LinkedHashSet; import java.
我正在尝试编译使用 ChatScript 库的程序。这是我在名为 main.cpp 的文件中的代码: #include #include "common.h" using namespace std
我想在我的程序中外部使用 ChatScript。在documents它说: Embedding Step #1 First, you will need to modify `common.h and
假设我有一个 char,我想用一行代码将其 strcat() 转换为 char 数组。对于 [一个非实用的] 示例: strcat("ljsdflusdfg",getchar()); 或者我想做相反的
我有以下类型签名: *Main Lib> let f :: a -> a -> a -> a; f = undefined *Main Lib> let x :: Char; x = undefin
我正在学习如何在 C 中使用指针(使用 malloc 和 free),但我在这个练习中遇到了一些麻烦。我只想制作一个指针数组,我想在其中保存每个单词的方向。然后我想为一个特定的词做一个 free(),
我有一个字符*: char* version = "10.5.108"; 我想通过字符分隔符获取两个新的 char*。 char delimiter = '.'; 执行以下代码后: printf("|
最近在学习Cpp,今天在学习使用Clion做测试的时候,发生了奇怪的事情。 这是我的代码 int main() { char c = 'b'; char carr[1]{'a'};
我对 c 很陌生,我正在审查一些代码。我遇到了这个: static char * fromDataType; static char * toDataType; static char * fromR
我有一个像这样的动态结构: struct network { int count; char** ips; } 如果我知道每个字符串数组都是 16 个字节(即 INET_ADDRSTR
我有一个旧程序,其中使用了一些库函数,但我没有那个库。 所以我正在使用 C++ 库编写该程序。在那个旧代码中有一些函数是这样调用的 *string = newstrdup("这里有一些字符串"); 字
我正在编写一个函数,该函数接受 ArrayList,然后将每个 char[] 复制到另一个增加长度的 char[] 中,然后将新的 char[] 添加到新的 ArrayList 中。当我尝试复制数组时
我正在寻找 map >并生成每个可能的 map从它。 我知道这可能会占用大量内存并需要一些时间。 每个map需要包含每个字母 a-z,并映射到唯一的 a-z 字符。 IE。啊bjcp迪EVfh嘎血红蛋
#define NAME_LEN 20 #include "stdio.h" #include "stdlib.h" #include "string.h" #pragma warning(disab
所以我必须创建一个函数来找到一对带有第一个字母并返回第二个字母的函数。 我实际上找到了一个答案,但是使用 map 功能却找不到。 lookUp :: Char -> [(Char, Cha
我最近接受采访并要求写mystrcat(*s1, *s2, *s3) 其中s1 和s2 是源字符串连接结果由 s3 给出。有人告诉我,不要担心 s3 的内存分配,并假设 s1 和 s2 不是空/无效字
今天我与一位同事讨论了他(对我来说)不寻常的“main”函数签名。他喜欢这样声明: int main(int argc, char* (*argv)[]) { printf("at index
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: What's the difference between new char[10] and new cha
通常字符串文字是 const char[] 类型。但是当我把它当作其他类型时,我得到了奇怪的结果。 unsigned char *a = "\355\1\23"; 使用此编译器会抛出警告“初始化中的指
我是一名优秀的程序员,十分优秀!