容器化技术笔记 Kubernetes容器运行时:Containerd vs Docke -
文章信息 -
Author: 李俊才 (jcLee95) Visit me at CSDN: https://jclee95.blog.csdn.netMy WebSite:http://thispage.tech/Email: 291148484163.com. Shenzhen ChinaAddress of this arti…
#学习自用#
union
共用体和结构体相似,但是共用体一次只能占用一个成员的内存,所有成员共用同一地址。
#include<iostream>
using namespace std;
union A
{int int_val;float float_val;
}a;
int main()
{a.float_val 2.0f;cout << a.f…