首页 > 代码库 > C++常见题
C++常见题
大端小端问题:内存从左到右读史从高低址到低地址,故为小端
字节对齐问题:常见的32位系统
struct A
{
int a;
char b;
short c;
};
struct B
{
char b;
int a;
short c;
};
A占8字节,B占12字节。
union{
int a;
char b[2];
}n;
int main(){
n.b[0]=1;
n.b[1]=1;
printf("%d",n.a);
system("pause");
return 0;
}
这里输出257,可见char的数组是右对齐的。
对于
unsigned int i = -1;
printf("%d\n", i );
输出-1;
C++常见题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。