当前位置:网站首页>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 : 2It means occupy 2 individual bit position_b : 5It means occupy 5 individual bit position_c : 10It means occupy 10 individual bit position_d : 30It 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 byteInternal data is used firstLow addressIn 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
边栏推荐
- On why we should program for all
- Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
- PHP - Common magic method (nanny level teaching)
- Risk planning and identification of Oracle project management system
- Convolution, pooling, activation function, initialization, normalization, regularization, learning rate - Summary of deep learning foundation
- [research materials] 2022 enterprise wechat Ecosystem Research Report - Download attached
- flask返回文件下载
- 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
- A Closer Look at How Fine-tuning Changes BERT
- Asia Pacific Financial Media | art cube of "designer universe": Guangzhou community designers achieve "great improvement" in urban quality | observation of stable strategy industry fund
猜你喜欢

Interview Reply of Zhuhai Jinshan

24. Query table data (basic)
![[count] [combined number] value series](/img/f5/6fadb8f1c8b75ddf5994c2c43feaa6.jpg)
[count] [combined number] value series

Codeforces Global Round 19(A~D)

Qualitative risk analysis of Oracle project management system

C语言自定义类型:结构体

Data governance: 3 characteristics, 4 transcendence and 3 28 principles of master data

好用的TCP-UDP_debug工具下载和使用

File upload of DVWA range

21. Delete data
随机推荐
Uibehavior, a comprehensive exploration of ugui source code
C语言 - 位段
Vit (vision transformer) principle and code elaboration
Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
Data governance: misunderstanding sorting
Flash return file download
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
1. Color inversion, logarithmic transformation, gamma transformation source code - miniopencv from zero
Nft智能合约发行,盲盒,公开发售技术实战--合约篇
Launch APS system to break the problem of decoupling material procurement plan from production practice
Machine learning - decision tree
WebRTC系列-H.264预估码率计算
matplotlib. Widgets are easy to use
C语言自定义类型:结构体
数据治理:数据质量篇
P3047 [usaco12feb]nearby cows g (tree DP)
File upload of DVWA range
Learn Arduino with examples
Codeforces Global Round 19(A~D)
数据治理:误区梳理篇