#define LEN sizeof(struct scorenode)谁啥意思

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#define LEN sizeof(struct scorenode)谁啥意思相关的知识,希望对你有一定的参考价值。

#define是预编译语句,意义是定义一个字符常量。#define PI 3.14159就是用PI这个标识符来代表3.14159,凡是程序中出现的PI,编译时都被替换为3.14159.好处是意义明确,如果程序中有多处用到这个数,以后要修改为3.14159265,只要修改定义一处就行了。
struct scorenode显然是个结构体,sizeof(struct scorenode)表示这个结构体的大小,即字节数。整句的意思是用LEN来表示这个大小。这样做,除了以上好处,你还会发现,编写代码时也省事。
参考技术A 宏定义,,

当你的程序中出现 LEN 时会用 sizeof(struct scorenode) 这个代替

sizeof(struct scorenode) 这个算出 结构体,scorenode 有几个字节组成

这是不是一个学生成绩管理系统啊?

呵呵本回答被提问者采纳
参考技术B #定义局域网大小(结构scorenode )

参考资料:http://translate.google.com/translate_t

sizeof 用法部分总结

#include<iostream>
#include<string.h>
using namespace std;
struct s1
{
	char a[8];
};

struct s2
{
	double d;
};

struct s3
{
	s1 s;
	char a;
};

struct s4
{
	s2 s;
	char a;
};
struct s5
{
	int i : 8;
	int j : 4;
	int a : 3;
	double b;
};

int main(){
	
	int  *p1;
	cout << sizeof(p1) << endl;
	cout << sizeof(*p1) << endl;
	cout << "~~~~~~~~~~~~~~~~~~~~~~" << endl;
	char  *p2;
	cout << sizeof(p2) << endl;
	cout << sizeof(*p2) << endl;
	cout << "~~~~~~~~~~~~~~~~~~~~~~" << endl;
	int a[10];
	char b[] = "hello";
	string s = "hello";
	cout << sizeof(a) << endl;   //
	cout << sizeof(b) << endl;   //计算‘\0’
	cout << strlen(b) << endl;   //不计算‘\0‘
	cout << sizeof(s) << endl;
	cout << s.size() << endl;
	cout << s.capacity()<<endl;
	cout << "~~~~~~~~~~~~~~~~~~~~~~" << endl;
	cout << sizeof(s1) << endl; // 8
	cout << sizeof(s2) << endl; // 8
	cout << sizeof(s3) << endl; // 9
	cout << sizeof(s4) << endl; // 16;
	cout << sizeof(s5) << endl; // 16;
	system("pause");
	return true;
}

  

以上是关于#define LEN sizeof(struct scorenode)谁啥意思的主要内容,如果未能解决你的问题,请参考以下文章

#define N sizeof(struct book) 啥意思?

len 和 sizeof 的区别

golang struct 和 byte互转

struct 对齐

bpftrace使用sizeof()查看task_struct的大小

sizeof(struct )大小讨论