当前位置:网站首页>C language - bit segment
C language - bit segment
2022-07-06 08:03:00 【Orange cat】
Bit segment
- What is a bit segment ?
C Language allows bits in a structure (bit) Specifies the memory length of its members in units
Such members in bits are called bit segments . With bit segments, data can be stored in fewer bits .
Example :
above
_a : 2
It means occupy 2 individual bit position_b : 5
It means occupy 5 individual bit position_c : 10
It means occupy 10 individual bit position_d : 30
It means occupy 30 individual bit positionReview your knowledge :
8 bit = 1 byte
4 byte = A plastic surgery (int)
All the members above add up to 47 bit, Is probably The size of two reshapes
Then why is the answer 8 ?
So how does the median segment of the structure in the above example allocate space ?
Bit segment memory allocation
- The members of a segment can be int unsigned int signed int Or is it char ( It belongs to the plastic family ) type
- The space of the bit segment is based on 4 Bytes ( int ) perhaps 1 Bytes ( char ) The way to open up .
- Bit segments involve many uncertainties , Bit segments are not cross platform , Pay attention to portable program should avoid using bit segment
- The number of bits occupied by the bit field cannot exceed the maximum number of bits that the basic type can represent
That is, bit segments cannot be stored across bytes . for example :int It is Zhan 4 Bytes , Then it can only be 32 bit position , It can't be exceeded
Example :
struct S
{
char a:3;
char b:4;
char c:5;
char d:4;
};
int main()
{
struct S n = {
0 };
n.a = 10;
n.b = 12;
n.c = 3;
n.d = 4;
return 0;
}
The illustration :
This is vs 2022 Compiler test data
- I said before
The space of the bit segment is according to 4 Bytes ( int ) perhaps 1 Bytes ( char ) The way to open up
So the first time is to open up 4 individual int Type of space - Bit segment in
A byte
Internal data is used firstLow address
In the use ofHigh address
, Use... From right to left (char type )
If it is int type , It's a plastic surgery from right to left - When there is not enough space left in one space for the next member , It will be wasted
- Don't give it a name in the position segment , Unable to access the bit segment , But the calculation size still takes up space
- The bit segment cannot be & Address fetch operation
The cross platform problem of bit segment
- int It's uncertain whether a bit segment is treated as a signed number or an unsigned number .
- The number of the largest bits in the bit segment cannot be determined
for example :16 The machine is the largest 16,32 The machine is the largest 32, It's written in 27, stay 16 It's a plane
There will be problems with the device . - The members in the bit segment are allocated from left to right in memory , Or right to left allocation criteria have not yet been defined .
- When a structure contains two bit segments , The second segment is relatively large , Cannot hold the remaining bits of the first bit segment , yes
Discard the remaining bits or use , This is uncertain .
- summary : Compared to the structure , Bit segments can achieve the same effect , But it can save a lot of space , But there are cross platform problems
边栏推荐
- Yu Xia looks at win system kernel -- message mechanism
- 让学指针变得更简单(三)
- A Closer Look at How Fine-tuning Changes BERT
- ESP系列引脚说明图汇总
- How to use information mechanism to realize process mutual exclusion, process synchronization and precursor relationship
- Introduction to number theory (greatest common divisor, prime sieve, inverse element)
- 1. Color inversion, logarithmic transformation, gamma transformation source code - miniopencv from zero
- 数据治理:主数据的3特征、4超越和3二八原则
- Webrtc series-h.264 estimated bit rate calculation
- Data governance: 3 characteristics, 4 transcendence and 3 28 principles of master data
猜你喜欢
wincc7.5下载安装教程(Win10系统)
[count] [combined number] value series
National economic information center "APEC industry +": economic data released at the night of the Spring Festival | observation of stable strategy industry fund
ESP series pin description diagram summary
[research materials] 2021 Research Report on China's smart medical industry - Download attached
Document 2 Feb 12 16:54
Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
[factorial inverse], [linear inverse], [combinatorial counting] Niu Mei's mathematical problems
The Vice Minister of the Ministry of industry and information technology of "APEC industry +" of the national economic and information technology center led a team to Sichuan to investigate the operat
Solution: intelligent site intelligent inspection scheme video monitoring system
随机推荐
Upgrade tidb operator
Launch APS system to break the problem of decoupling material procurement plan from production practice
使用 BR 备份 TiDB 集群数据到兼容 S3 的存储
Analysis of Top1 accuracy and top5 accuracy examples
[factorial inverse], [linear inverse], [combinatorial counting] Niu Mei's mathematical problems
你想知道的ArrayList知识都在这
Upgrade tidb with tiup
[Yugong series] February 2022 U3D full stack class 010 prefabricated parts
. Net 6 learning notes: what is NET Core
[redis] Introduction to NoSQL database and redis
The Vice Minister of the Ministry of industry and information technology of "APEC industry +" of the national economic and information technology center led a team to Sichuan to investigate the operat
"Designer universe" APEC design +: the list of winners of the Paris Design Award in France was recently announced. The winners of "Changsha world center Damei mansion" were awarded by the national eco
From monomer structure to microservice architecture, introduction to microservices
C语言自定义类型:结构体
MySQL view tablespace and create table statements
Interview Reply of Zhuhai Jinshan
软件开发的一点随记
使用 BR 恢复 S3 兼容存储上的备份数据
Hcip day 16
PHP - Common magic method (nanny level teaching)