【C】Re09 结构体
一、结构体 Struct
创建和基本使用
#include <stdio.h>
#include <stdlib.h>
#include <string.h> // 自定义数据类型 : 结构体
struct Person {
int age;
char id[18];
char name[20];
int gender;
}; // 创建结构体数据类型
void createStructType ( ) {
struct Person man = {
23,
"363301199804023324",
"tom",
1
}; // 访问结构体数据通过点
printf("man age -> %d\n", man.age);
printf("man id -> %s\n", man.id);
printf("man name -> %s\n", man.name);
printf("man gender -> %d\n", man.gender);
} // 方式二 声明结构体之后附加变量名称
struct Ac {
int property1;
char property2[18];
char property3[20];
int property4;
} sss; // 再后面声明变量名称 void createStructType2() {
sss.property1 = 12;
// 不可以直接赋值 sss.property2 = "sdas";
strcpy(sss.property2, "sss");
} int main() {
createStructType(); return 0;
}
属性值的交换:
#include <stdio.h>
#include <stdlib.h>
#include <string.h> struct Struct {
int property1;
char property2[10];
double property3;
};
// 赋值操作
void structAssignment() {
struct Struct s1;
struct Struct s2 = {
22,
"张三",
22.55
}; // 赋值方式1 为s1 逐个赋值操作
s1.property1 = s2.property1;
strcpy(s1.property2, s2.property2);
s1.property3 = s2.property3; // 赋值方式2 允许操作整体赋值的方式
s1 = s2; // 赋值方式3 使用memcpy函数
memcpy(&s1, &s2, sizeof(struct Struct));
}
// 属性值交换操作
void structPropertyChange() {
struct Struct s1 = {
10,
"李四",
100.23
};
struct Struct s2 = {
22,
"张三",
22.55
}; int property1Temp = s1.property1;
s1.property1 = s2.property1;
s2.property1 = property1Temp; // char property2Temp[10] = s1.property2;
char property2Temp[10];
strcpy(property2Temp, s1.property2);
strcpy(s1.property2, s2.property2);
strcpy(s2.property2, property2Temp); double property3Temp = s1.property3;
s1.property3 = s2.property3;
s2.property3 = property3Temp; // 结构体允许整体作为一个TEMP进行交换操作
struct Struct tempStruct;
tempStruct = s1;
s1 = s2;
s2 = tempStruct;
} int main() {
structPropertyChange();
return 0;
}
结构体数组:
#include <stdio.h>
#include <stdlib.h>
#include <string.h> struct Struct {
int property1;
char property2[10];
double property3;
}; void structArray() {
struct Struct structs[5] = {
{1,"张三1", 23.23},
{2,"张三2", 23.23},
{3,"张三3", 23.23},
{4,"张三4", 23.23},
{5,"张三5", 23.23},
}; int size = sizeof(structs) / sizeof(struct Struct); for (int i = 0; i < size; ++i) {
printf(
"element%d p1 : %d p2 : %s, p3 : %.2f\n",
i,
structs[i].property1,
structs[i].property2,
structs[i].property3
);
}
} int main() {
structArray();
return 0;
}
嵌套的结构体:
#include <stdio.h>
#include <stdlib.h>
#include <string.h> // 结构体嵌套
struct Student {
char stuID[10];
char name[4];
};
struct Teacher {
char teachID[5];
char name[4];
struct Student student;
}; void structNesting() {
// 嵌套结构体创建方式
struct Teacher li = {
"133001",
"李四",
{ "122001", "小明"}
};
// 允许修饰括号进行赋值
struct Teacher jie = {
"133002",
"杰哥",
"122001",
"小明"
}; // 调用
printf(
"nestingStructs -> teacherID : %s, name : %s, stuID : %s, stuName : %s\n",
li.teachID,
li.name,
li.student.stuID,
li.student.name
);
} int main() {
structNesting();
return 0;
}
二、结构体和指针
#include <stdio.h>
#include <stdlib.h>
#include <string.h> // 结构体与指针
struct Student {
int id;
char name[4];
double score;
}; void structWithPointer () {
struct Student student = { 1, "Tom", 98.5 };
struct Student * studentPointer = &student; // 结构体指针 // 使用指针调用结构体属性的方式
printf(
"use studentPointer to get properties :\n id : %d, name : %s, score : %.2f\n",
studentPointer -> id,
studentPointer -> name,
studentPointer -> score
);
// 使用结构体属性的方式调用:
printf(
"use structVariable to get properties :\n id : %d, name : %s, score : %.2f\n",
student.id,
student.name,
student.score
); // 使用解引用 == 结构体变量
printf(
"use *studentPointer to get properties :\n id : %d, name : %s, score : %.2f\n",
(*studentPointer).id,
(*studentPointer).name,
(*studentPointer).score
); // 使用解地址 == 结构体指针
printf(
"use &student to get properties :\n id : %d, name : %s, score : %.2f\n",
(&student) -> id,
(&student) -> name,
(&student) -> score
);
} int main() {
structWithPointer ();
return 0;
}
三、结构体与堆区
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct Student {
int id;
char * name;
int age;
}; void test() {
struct Student student = {
12003,
"aaa",
23
}; printf("name -> %s\n", student.name); // student.name[0] = 'A'; 不允许这样操作,aaa是字符串常量,无法被修改 printf("name -> %s\n", student.name);
}
void test2() {
struct Student student = {
12003,
NULL,
23
}; student.name = malloc(sizeof(char) * 64); // 结构体属性值创建在malloc堆区中
strcpy(student.name, "Jerry");
printf("name -> %s\n", student.name); strcpy(student.name, "Tom");
printf("name -> %s\n", student.name);
} void customFree(void * pointer) {
if (pointer != NULL) {
free(pointer);
pointer = NULL;
}
} void test3() {
// 结构体本身和属性成员都在堆区中创建
struct Student * studentPointer = NULL;
studentPointer = malloc(sizeof(struct Student)); studentPointer -> id = 1002001;
studentPointer -> name = "Ach";
studentPointer -> age = 22;
printf("id - %d, name - %s, age - %d\n", studentPointer->id, studentPointer->name, studentPointer->age); customFree(&studentPointer->id);
customFree(studentPointer->name);
customFree(&studentPointer->age); printf("id - %d, name - %s, age - %d\n", studentPointer->id, studentPointer->name, studentPointer->age); } int main() {
test3();
return 0;
}
四、Const与结构体:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct Student {
int id;
char * name;
int age;
}; void sss() {
struct Student s1 = {
100,
"Tom",
18
}; struct Student const * p1 = &s1; // 常量指针,指针指向的内存空间不可以改变存储值,但是改变指向
struct Student * const p2 = &s1; // 指针常量,指向不可以改变,但是可以改变指向的内存空间存储值
struct Student const * const p3 = &s1; // 常量锁定,不可以操作任何的写入了
} int main() {
sss();
return 0;
}
【C】Re09 结构体的更多相关文章
- Go结构体实现类似成员函数机制
Go语言结构体成员能否是函数,从而实现类似类的成员函数的机制呢?答案是肯定的. package main import "fmt" type stru struct { testf ...
- C#基础回顾(二)—页面值传递、重载与重写、类与结构体、装箱与拆箱
一.前言 -孤独的路上有梦想作伴,乘风破浪- 二.页面值传递 (1)C#各页面之间可以进行数据的交换和传递,页面之间可根据获取的数据,进行各自的操作(跳转.计算等操作).为了实现多种方式的数据传递,C ...
- go语言结构体
定义: 是一种聚合的数据类型,是由零个或多个任意类型的值聚合成的实体. 成员: 每个值称为结构体的成员. 示例: 用结构体的经典案例处理公司的员工信息,每个员工信息包含一个唯一的员工编号.员工的名字. ...
- C语言中的结构体
用户自己建立自己的结构体类型 1. 定义和使用结构体变量 (1).结构体的定义 C语言允许用户自己建立由不同类型数据组成的组合型的数据结构,它称为结构体. (2).声明一个结构体类型的一般形式为: ...
- C++_系列自学课程_第_12_课_结构体
#include <iostream> #include <string> using namespace std; struct CDAccount { double bal ...
- java socket传送一个结构体给用C++编写的服务器解析的问题
另一端是Java写客户端程序,两者之间需要通信.c++/c接收和发送的都是结构体,而Java是直接发送的字节流或者byte 数组.解决方法:c++/c socket 在发送结构体的时候其实发送的也是字 ...
- swift学习笔记3——类、结构体、枚举
之前学习swift时的个人笔记,根据github:the-swift-programming-language-in-chinese学习.总结,将重要的内容提取,加以理解后整理为学习笔记,方便以后查询 ...
- HDOJ 1009. Fat Mouse' Trade 贪心 结构体排序
FatMouse' Trade Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- C语言结构体对齐
1.结构体变量中的元素如何访问? (1)数组中元素的访问方式:表面上有2种方式(数组下标方式和指针方式):实质上都是指针方式访问.(2)结构体变量中的元素访问方式:只有一种,用.或者->的方式来 ...
- C与指针(结构体指针,函数指针,数组指针,指针数组)定义与使用
类型 普通指针 指针数组(非指针类型) 数组指针 结构体指针 函数指针 二重指针 定义方式 int *p; int *p[5]; int (*p)[5]; int a[3][5]; struct{.. ...
随机推荐
- Linux扩展篇-shell编程(四)-shell条件判断
基本语法 格式一: test condition 格式二: [ condition ] 注意:1)condition前后要有空格.2)条件非空即为true,例如[ hello ]返回true,[ ]返 ...
- c++ 线程使用
C++中的线程可以通过标准库提供的thread类实现.该类提供了创建和管理线程的方法和函数. 创建线程的方法: #include <thread> ... // 创建一个线程,其执行函数为 ...
- 一次phoniex表查询报出 org.apache.hadoop.hbase.NotServingRegionException
org.apache.hadoop.hbase.NotServingRegionException: SYSTEM.STATS,,1607503004410.334266e1a9b7d9859dbfb ...
- 使用python解析nginx日志
性能测试时,需使用生产环境各接口请求比例分配接口请求比,nginx统计脚本如下: import re import pandas as pd import xlwt obj = re.compile( ...
- 【VyOS-开源篇-3】- container for vyos 搭建 Halo 博客-vyos-开源篇
文章说明:介绍在vyos软路由上配置container容器,vyos最新滚动版1.5已经支持在vyos命令行中启动docker容器,在vyos 官网介绍是说1.3版本之后就都有这个功能了,如果你的版本 ...
- Mysql 聚合函数嵌套使用
Mysql 聚合函数嵌套使用 目的:Mysql 聚合函数嵌套使用 聚合函数不可以直接嵌套使用,比如: max(count(*)) 思路:但是可以嵌套子查询使用(先分组取出count值, 再将count ...
- EthernetIP IO从站设备数据 转opc ua项目案例
1 案例说明 设置网关采集EthernetIP IO设备数据 把采集的数据转成opc ua协议转发给其他系统. 2 VFBOX网关工作原理 VFBOX网关是协议转换网关,是把一种协议转换成另外一种协议 ...
- 前端 Array.sort() 源码学习
源码地址 V8源码Array 710行开始为sort()相关 Array.sort()方法是那种排序呢? 去看源码主要是源于这个问题 // In-place QuickSort algorithm. ...
- Linux 内核:I2C子系统分析(1)基于子系统的驱动分析与实现
Linux 内核:I2C子系统分析(1)基于子系统的驱动分析与实现 背景 在学习高通平台的有关知识,看到一篇博客中介绍了GPIO模拟I2C设备,觉得挺有意思的. 看了看有关的实现,发现自己之前学习从L ...
- PyTorch程序练习(一):PyTorch实现CIFAR-10多分类
一.准备数据 代码 import torchvision import torchvision.transforms as transforms from torch.utils.data impor ...